summaryrefslogtreecommitdiff
path: root/db/migrate/20151221234414_add_tfa_additional_fields.rb
blob: fed734f77f40009c04b46a109a810c07df93fde8 (plain)
1
2
3
4
5
6
7
class AddTfaAdditionalFields < ActiveRecord::Migration[4.2]
  def change
    change_table :users do |t|
      t.datetime :otp_grace_period_started_at, null: true
    end
  end
end