summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210729163312_re_schedule_latest_pipeline_id_population_with_all_security_related_artifact_types.rb
blob: 8ec608453a023cdb1186bbb9917b1fa5ffb2164c (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 ReScheduleLatestPipelineIdPopulationWithAllSecurityRelatedArtifactTypes < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  DELAY_INTERVAL = 2.minutes.to_i
  BATCH_SIZE = 100
  MIGRATION = 'PopulateLatestPipelineIds'

  disable_ddl_transaction!

  def up
    return unless Gitlab.ee?

    Gitlab::BackgroundMigration.steal(MIGRATION)

    queue_background_migration_jobs_by_range_at_intervals(
      Gitlab::BackgroundMigration::PopulateLatestPipelineIds::ProjectSetting.has_vulnerabilities_without_latest_pipeline_set,
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE,
      primary_column_name: 'project_id'
    )
  end

  def down
    # no-op
  end
end