You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
749 B
29 lines
749 B
13 years ago
|
class DeviseCreateUsers < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
create_table(:users) do |t|
|
||
|
t.database_authenticatable :null => false
|
||
|
t.recoverable
|
||
|
t.rememberable
|
||
|
t.trackable
|
||
|
t.confirmable
|
||
|
t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
|
||
|
|
||
|
# t.encryptable
|
||
|
# t.token_authenticatable
|
||
|
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_index :users, :email, :unique => true
|
||
|
add_index :users, :reset_password_token, :unique => true
|
||
|
add_index :users, :confirmation_token, :unique => true
|
||
|
add_index :users, :unlock_token, :unique => true
|
||
|
# add_index :users, :authentication_token, :unique => true
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :users
|
||
|
end
|
||
|
end
|