Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20221009085130_add_mr_checks_columns_to_namespace_settings.rb')
-rw-r--r--db/migrate/20221009085130_add_mr_checks_columns_to_namespace_settings.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20221009085130_add_mr_checks_columns_to_namespace_settings.rb b/db/migrate/20221009085130_add_mr_checks_columns_to_namespace_settings.rb
deleted file mode 100644
index 947a662575a..00000000000
--- a/db/migrate/20221009085130_add_mr_checks_columns_to_namespace_settings.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# frozen_string_literal: true
-
-class AddMrChecksColumnsToNamespaceSettings < Gitlab::Database::Migration[2.0]
- def change
- add_column :namespace_settings, :only_allow_merge_if_pipeline_succeeds, :boolean, default: false, null: false
- add_column :namespace_settings, :allow_merge_on_skipped_pipeline, :boolean, default: false, null: false
- add_column :namespace_settings, :only_allow_merge_if_all_discussions_are_resolved, \
- :boolean, default: false, null: false
- end
-end