main
 1class DeviseCreateUsers < ActiveRecord::Migration
 2  def change
 3    create_table(:users) do |t|
 4      ## Database authenticatable
 5      t.string :email,              :null => false, :default => ""
 6      t.string :encrypted_password, :null => false, :default => ""
 7
 8      ## Recoverable
 9      t.string   :reset_password_token
10      t.datetime :reset_password_sent_at
11
12      ## Rememberable
13      t.datetime :remember_created_at
14
15      ## Trackable
16      t.integer  :sign_in_count, :default => 0
17      t.datetime :current_sign_in_at
18      t.datetime :last_sign_in_at
19      t.string   :current_sign_in_ip
20      t.string   :last_sign_in_ip
21
22      ## Confirmable
23      # t.string   :confirmation_token
24      # t.datetime :confirmed_at
25      # t.datetime :confirmation_sent_at
26      # t.string   :unconfirmed_email # Only if using reconfirmable
27
28      ## Lockable
29      # t.integer  :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
30      # t.string   :unlock_token # Only if unlock strategy is :email or :both
31      # t.datetime :locked_at
32
33      ## Token authenticatable
34      # t.string :authentication_token
35
36
37      t.timestamps
38    end
39
40    add_index :users, :email,                :unique => true
41    add_index :users, :reset_password_token, :unique => true
42    # add_index :users, :confirmation_token,   :unique => true
43    # add_index :users, :unlock_token,         :unique => true
44    # add_index :users, :authentication_token, :unique => true
45  end
46end