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

9 lines
197 B
Ruby
Raw Normal View History

# rubocop:disable all
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