Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220322071127_finalize_project_namespaces_backfill.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21b8dc78f7db30e98ac453b057441e1ba9525060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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]
  disable_ddl_transaction!

  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