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

# This migration acts as a gate-keeper for other migrations related to project namespace back-filling
# so that other migrations that depend on project namespace back-filling cannot be run unless project namespace
# back-filling has finalized successfully.
class FinalizeProjectNamespacesBackfill < Gitlab::Database::Migration[1.0]
  MIGRATION = 'ProjectNamespaces::BackfillProjectNamespaces'

  def up
    ensure_batched_background_migration_is_finished(
      job_class_name: MIGRATION,
      table_name: :projects,
      column_name: :id,
      job_arguments: [nil, 'up']
    )
  end

  def down
    # noop
  end
end