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