summaryrefslogtreecommitdiff
path: root/db/migrate/20130809124851_add_permission_check_to_user.rb
blob: 9f9dea36101195a4ddb08e52e87add68d4dac489 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPermissionCheckToUser < ActiveRecord::Migration
  def change
    add_column :users, :last_credential_check_at, :datetime
  end
end