summaryrefslogtreecommitdiff
path: root/db/post_migrate/20211102114802_update_vulnerability_occurrences_location.rb
blob: 44e2630af06969fc7a357fca23f72ed3daf4500c (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 UpdateVulnerabilityOccurrencesLocation < Gitlab::Database::Migration[1.0]
  BATCH_SIZE = 20_000
  DELAY_INTERVAL = 3.minutes
  MIGRATION_NAME = 'UpdateVulnerabilityOccurrencesLocation'

  disable_ddl_transaction!

  def up
    return unless Gitlab.ee?

    relation = Gitlab::BackgroundMigration::UpdateVulnerabilityOccurrencesLocation::Occurrence.where(location: nil)
    queue_background_migration_jobs_by_range_at_intervals(relation,
                                                          MIGRATION_NAME,
                                                          DELAY_INTERVAL,
                                                          batch_size: BATCH_SIZE,
                                                          track_jobs: true)
  end

  def down
    # no-op
  end
end