26 lines
533 B
Ruby
26 lines
533 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ScheduleDropInvalidVulnerabilities2 < ActiveRecord::Migration[6.0]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
MIGRATION = 'DropInvalidVulnerabilities'
|
||
|
DELAY_INTERVAL = 2.minutes.to_i
|
||
|
BATCH_SIZE = 10_000
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
queue_background_migration_jobs_by_range_at_intervals(
|
||
|
define_batchable_model('vulnerabilities'),
|
||
|
MIGRATION,
|
||
|
DELAY_INTERVAL,
|
||
|
batch_size: BATCH_SIZE,
|
||
|
track_jobs: true
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
# no-op
|
||
|
end
|
||
|
end
|