summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230208125736_schedule_migration_for_links.rb
blob: 78b83bbb502a42bc854d169fcfcd9558349babf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class ScheduleMigrationForLinks < Gitlab::Database::Migration[2.1]
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  MIGRATION = 'MigrateLinksForVulnerabilityFindings'
  DELAY_INTERVAL = 2.minutes
  SUB_BATCH_SIZE = 500
  BATCH_SIZE = 10000

  def up
    # no-op as it is rescheduled via db/post_migrate/20230314144640_reschedule_migration_for_links.rb
  end

  def down
    # no-op as it is rescheduled via db/post_migrate/20230314144640_reschedule_migration_for_links.rb
  end
end