module Devise::Schema

def lockable

Creates failed_attempts, unlock_token and locked_at
def lockable
  apply_schema :failed_attempts, Integer, :default => 0
  apply_schema :unlock_token,    String
  apply_schema :locked_at,       DateTime
end