1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/db/migrate/20120227040841_add_lockable_to_user.rb
Jason Denney aa3ed3d43b git init
2012-12-04 00:46:15 -05:00

10 lines
309 B
Ruby

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