summaryrefslogtreecommitdiff
path: root/db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb')
-rw-r--r--db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb b/db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb
deleted file mode 100644
index 3d85a19b82f..00000000000
--- a/db/migrate/20180309121820_reschedule_commits_count_for_merge_request_diff.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-class RescheduleCommitsCountForMergeRequestDiff < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- MIGRATION = 'AddMergeRequestDiffCommitsCount'.freeze
- BATCH_SIZE = 5000
- DELAY_INTERVAL = 5.minutes.to_i
-
- class MergeRequestDiff < ActiveRecord::Base
- self.table_name = 'merge_request_diffs'
-
- include ::EachBatch
- end
-
- disable_ddl_transaction!
-
- def up
- say 'Populating the MergeRequestDiff `commits_count` (reschedule)'
-
- execute("SET statement_timeout TO '60s'")
-
- MergeRequestDiff.where(commits_count: nil).each_batch(of: BATCH_SIZE) do |relation, index|
- start_id, end_id = relation.pluck('MIN(id), MAX(id)').first
- delay = index * DELAY_INTERVAL
-
- BackgroundMigrationWorker.perform_in(delay, MIGRATION, [start_id, end_id])
- end
- end
-end