summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210219102900_reschedule_set_default_iteration_cadences.rb
blob: 6c7b46737aa705d41ee35aa88aa40be0f42c23c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

class RescheduleSetDefaultIterationCadences < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  BATCH_SIZE = 1_000
  DELAY_INTERVAL = 2.minutes.to_i
  MIGRATION_CLASS = 'SetDefaultIterationCadences'

  class Iteration < ActiveRecord::Base # rubocop:disable Style/Documentation
    include EachBatch

    self.table_name = 'sprints'
  end

  disable_ddl_transaction!

  def up
    Iteration.select(:group_id).distinct.each_batch(of: BATCH_SIZE, column: :group_id) do |batch, index|
      group_ids = batch.pluck(:group_id)

      migrate_in(index * DELAY_INTERVAL, MIGRATION_CLASS, group_ids)
    end
  end

  def down
    # Not needed
  end
end