1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/db/migrate/20120227040841_add_lockable_to_user.rb

10 lines
309 B
Ruby
Raw Normal View History

2012-12-04 00:46:15 -05:00
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