Sha256: 4b9dca3748db18239d0aaaa0f45e35990b4697fb43159730e276ee1404b5db6d

Contents?: true

Size: 251 Bytes

Versions: 1

Compression:

Stored size: 251 Bytes

Contents

class AddUser < ActiveRecord::Migration
  def change
    create_table :cavy_users do |t|
      t.string :email
      t.string :name
      t.string :password_digest
      t.string :auth_token
      t.string :role
 
      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cavy-0.1.0.beta1 db/migrate/20141111180022_add_user.rb