Sha256: a85de0a9720a01ec080687fbd88d14b054bc40e856bb30a9659d83be193d716d

Contents?: true

Size: 255 Bytes

Versions: 1

Compression:

Stored size: 255 Bytes

Contents

class AddUser < ActiveRecord::Migration[4.2]
  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.beta2 db/migrate/20141111180022_add_user.rb