summaryrefslogtreecommitdiff
path: root/db/post_migrate/20201103192526_schedule_populate_has_vulnerabilities.rb
blob: bed90af09dcb45bdf053717f1a2385ed30fd714a (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
# frozen_string_literal: true

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

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

  disable_ddl_transaction!

  def up
    Gitlab::BackgroundMigration::PopulateHasVulnerabilities::Vulnerability.distinct.each_batch(of: BATCH_SIZE, column: :project_id) do |batch, index|
      project_ids = batch.pluck(:project_id)

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

  def down
    # no-op
  end
end