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

20210111075105_schedule_uuid_population_for_security_findings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43cfb27b94c43ac8cecc718c0628061315640911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

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

  DOWNTIME = false
  MIGRATION_CLASS = 'PopulateUuidsForSecurityFindings'
  DELAY_INTERVAL = 2.minutes
  BATCH_SIZE = 25

  disable_ddl_transaction!

  def up
    # no-op, replaced by 20210111075206_schedule_uuid_population_for_security_findings2.rb
  end

  def down
    # no-op
  end
end