summaryrefslogtreecommitdiff
path: root/db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb')
-rw-r--r--db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb b/db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb
new file mode 100644
index 00000000000..eea564d00f4
--- /dev/null
+++ b/db/migrate/20200413072059_add_group_owners_can_manage_default_branch_protection_to_application_settings.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class AddGroupOwnersCanManageDefaultBranchProtectionToApplicationSettings < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+ disable_ddl_transaction!
+
+ def up
+ add_column_with_default(:application_settings,
+ :group_owners_can_manage_default_branch_protection,
+ :boolean,
+ default: true)
+ end
+
+ def down
+ remove_column :application_settings, :group_owners_can_manage_default_branch_protection
+ end
+end