debian-mirror-gitlab/db/migrate/20230131090842_add_global_group_approvers_enabled_to_application_settings.rb
2023-04-23 21:23:45 +05:30

12 lines
295 B
Ruby

# frozen_string_literal: true
class AddGlobalGroupApproversEnabledToApplicationSettings < Gitlab::Database::Migration[2.1]
def change
add_column :application_settings,
:security_policy_global_group_approvers_enabled,
:boolean,
default: true,
null: false
end
end