gitlab-org--gitlab-foss/db/migrate/20151221234414_add_tfa_addi...

8 lines
175 B
Ruby
Raw Normal View History

2015-12-24 02:02:52 +00:00
class AddTfaAdditionalFields < ActiveRecord::Migration
def change
change_table :users do |t|
t.datetime :otp_grace_period_started_at, null: true
end
end
end