Class: CreateUsers

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/rails/generators/simple_login/templates/create_users.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/rails/generators/simple_login/templates/create_users.rb', line 2

def change
  create_table :users do |t|
    t.string :email
    t.string :password_digest
    t.string :auth_token
    t.string :password_reset_token
    t.datetime :password_reset_sent_at

    t.timestamps
  end
end