debian-mirror-gitlab/db/migrate/20151218154042_add_tfa_to_application_settings.rb

9 lines
263 B
Ruby
Raw Normal View History

2018-12-23 12:14:25 +05:30
class AddTfaToApplicationSettings < ActiveRecord::Migration[4.2]
def change
change_table :application_settings do |t|
t.boolean :require_two_factor_authentication, default: false
t.integer :two_factor_grace_period, default: 48
end
end
end