summaryrefslogtreecommitdiff
path: root/db/post_migrate/20201028182809_backfill_jira_tracker_deployment_type2.rb
blob: 63a0554433c3e2f72d36ebdc53653aff27d8ef45 (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
31
32
# frozen_string_literal: true

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

  DOWNTIME = false

  MIGRATION = 'BackfillJiraTrackerDeploymentType2'
  DELAY_INTERVAL = 2.minutes
  BATCH_SIZE = 1000

  disable_ddl_transaction!

  class JiraTrackerData < ActiveRecord::Base
    include EachBatch

    self.table_name = 'jira_tracker_data'
  end

  def up
    queue_background_migration_jobs_by_range_at_intervals(
      JiraTrackerData.where(deployment_type: 0),
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      track_jobs: true)
  end

  def down
    # NOOP
  end
end