# frozen_string_literal: true # rubocop:disable BackgroundMigration/DictionaryFile class RescheduleEvidencesHandlingUnicode < Gitlab::Database::Migration[2.1] restrict_gitlab_migration gitlab_schema: :gitlab_main MIGRATION = 'MigrateEvidencesForVulnerabilityFindings' DELAY_INTERVAL = 2.minutes SUB_BATCH_SIZE = 250 BATCH_SIZE = 4000 MAX_BATCH_SIZE = 8000 def up delete_batched_background_migration(MIGRATION, :vulnerability_occurrences, :id, []) queue_batched_background_migration( MIGRATION, :vulnerability_occurrences, :id, job_interval: DELAY_INTERVAL, batch_size: BATCH_SIZE, sub_batch_size: SUB_BATCH_SIZE, max_batch_size: MAX_BATCH_SIZE ) end def down delete_batched_background_migration(MIGRATION, :vulnerability_occurrences, :id, []) end end # rubocop:enable BackgroundMigration/DictionaryFile