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/20220926023734_add_mirror_branch_regex_to_project_settings.rb')
-rw-r--r--db/migrate/20220926023734_add_mirror_branch_regex_to_project_settings.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20220926023734_add_mirror_branch_regex_to_project_settings.rb b/db/migrate/20220926023734_add_mirror_branch_regex_to_project_settings.rb
new file mode 100644
index 00000000000..5032a9ff964
--- /dev/null
+++ b/db/migrate/20220926023734_add_mirror_branch_regex_to_project_settings.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+class AddMirrorBranchRegexToProjectSettings < Gitlab::Database::Migration[2.0]
+ enable_lock_retries!
+
+ # rubocop:disable Migration/AddLimitToTextColumns
+ # limit is added in 20221027124848_add_text_limit_to_project_settings_mirror_branch_regex.rb
+ def change
+ add_column :project_settings, :mirror_branch_regex, :text
+ end
+ # rubocop:enable Migration/AddLimitToTextColumns
+end