Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211118194239_drop_invalid_remediations.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93edde87936e0524f88b42329037c13f47ab11b9 (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
# frozen_string_literal: true

class DropInvalidRemediations < Gitlab::Database::Migration[1.0]
  BATCH_SIZE = 3_000
  DELAY_INTERVAL = 3.minutes
  MIGRATION_NAME = 'DropInvalidRemediations'
  DAY_PRIOR_TO_BUG_INTRODUCTION = DateTime.new(2021, 8, 1, 0, 0, 0)

  disable_ddl_transaction!

  def up
    return unless Gitlab.ee?

    relation = Gitlab::BackgroundMigration::DropInvalidRemediations::FindingRemediation.where("created_at > ?", DAY_PRIOR_TO_BUG_INTRODUCTION)
    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