7 lines
175 B
Ruby
7 lines
175 B
Ruby
class AddTfaAdditionalFields < ActiveRecord::Migration
|
|
def change
|
|
change_table :users do |t|
|
|
t.datetime :otp_grace_period_started_at, null: true
|
|
end
|
|
end
|
|
end
|