debian-mirror-gitlab/db/migrate/20200908094810_add_new_setting_to_namespace_setting.rb
2021-01-03 14:25:43 +05:30

20 lines
436 B
Ruby

# frozen_string_literal: true
class AddNewSettingToNamespaceSetting < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
add_column :namespace_settings, :allow_mfa_for_subgroups, :boolean, default: true, null: false
end
end
def down
with_lock_retries do
remove_column :namespace_settings, :allow_mfa_for_subgroups
end
end
end