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.
13 lines
436 B
13 lines
436 B
11 years ago
|
class SorceryBruteForceProtection < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :users, :failed_logins_count, :integer, :default => 0
|
||
|
add_column :users, :lock_expires_at, :datetime, :default => nil
|
||
|
add_column :users, :unlock_token, :string, :default => nil
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :users, :lock_expires_at
|
||
|
remove_column :users, :failed_logins_count
|
||
|
remove_column :users, :unlock_token
|
||
|
end
|
||
|
end
|