summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220715152108_backfill_project_import_level.rb
blob: 65a0dc0a58afc6a299bffe21650154912ffb399d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class BackfillProjectImportLevel < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  MIGRATION = 'BackfillProjectImportLevel'
  INTERVAL = 120.seconds

  def up
    queue_batched_background_migration(
      MIGRATION,
      :namespaces,
      :id,
      job_interval: INTERVAL
    )
  end

  def down
    delete_batched_background_migration(MIGRATION, :namespaces, :id, [])
  end
end