summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-07-12 13:16:08 +0000
committerAndreas Brandl <abrandl@gitlab.com>2019-07-12 13:16:08 +0000
commit5ea899d34f6332733bb5aee225c5f3ced340cb24 (patch)
treefd5c031223b2eeb34942fc3c5d3421619f1ce22e /db
parent907154957ef89c1f0df1de3c665418146cc93f98 (diff)
parent184807b253991bc0aed20cad038c6d6602b5dba8 (diff)
downloadgitlab-ce-5ea899d34f6332733bb5aee225c5f3ced340cb24.tar.gz
Merge branch 'id-clean-up-mr-assignees-migration' into 'master'
Add cleanup migration for MR's multiple assignees See merge request gitlab-org/gitlab-ce!30269
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20190702173936_populate_remaining_merge_request_assignees.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/db/post_migrate/20190702173936_populate_remaining_merge_request_assignees.rb b/db/post_migrate/20190702173936_populate_remaining_merge_request_assignees.rb
new file mode 100644
index 00000000000..c435b94015d
--- /dev/null
+++ b/db/post_migrate/20190702173936_populate_remaining_merge_request_assignees.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class PopulateRemainingMergeRequestAssignees < ActiveRecord::Migration[5.1]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+ BATCH_SIZE = 10_000
+ MIGRATION = 'PopulateMergeRequestAssigneesTable'
+
+ disable_ddl_transaction!
+
+ def up
+ Gitlab::BackgroundMigration.steal(MIGRATION)
+
+ Gitlab::BackgroundMigration::PopulateMergeRequestAssigneesTable.new.perform_all_sync(batch_size: BATCH_SIZE)
+ end
+end