mirror of https://github.com/fspc/BikeShed-1.git
10 lines
309 B
10 lines
309 B
12 years ago
|
class AddLockableToUser < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_table :users do |t|
|
||
|
t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
|
||
|
t.string :unlock_token # Only if unlock strategy is :email or :both
|
||
|
t.datetime :locked_at
|
||
|
end
|
||
|
end
|
||
|
end
|