0fc9f9d3e7
DB schema generated by a migration may look different in rails 4 and 5 (because rails 5 may use different default values). For this reason it's important to explicitly set for which rails version a migration was written for. See https://stackoverflow.com/questions/35929869/activerecordmigration-deprecation-warning-asks-for-rails-version-but-im-no/35930912#35930912
32 lines
812 B
Ruby
32 lines
812 B
Ruby
# frozen_string_literal: true
|
|
|
|
# rescheduling of the revised RemoveRestrictedTodosWithCte background migration
|
|
class RemoveRestrictedTodosAgain < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
disable_ddl_transaction!
|
|
|
|
MIGRATION = 'RemoveRestrictedTodos'.freeze
|
|
BATCH_SIZE = 1000
|
|
DELAY_INTERVAL = 5.minutes.to_i
|
|
|
|
class Project < ActiveRecord::Base
|
|
include EachBatch
|
|
|
|
self.table_name = 'projects'
|
|
end
|
|
|
|
def up
|
|
Project.where('EXISTS (SELECT 1 FROM todos WHERE todos.project_id = projects.id)')
|
|
.each_batch(of: BATCH_SIZE) do |batch, index|
|
|
range = batch.pluck('MIN(id)', 'MAX(id)').first
|
|
|
|
BackgroundMigrationWorker.perform_in(index * DELAY_INTERVAL, MIGRATION, range)
|
|
end
|
|
end
|
|
|
|
def down
|
|
# nothing to do
|
|
end
|
|
end
|