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

20220127132201_cleanup_backfill_ci_project_mirrors.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c7d9a945ba378604aa8a2ddfded64e812a5bbe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class CleanupBackfillCiProjectMirrors < Gitlab::Database::Migration[1.0]
  MIGRATION = 'BackfillCiProjectMirrors'

  disable_ddl_transaction!

  def up
    finalize_background_migration(MIGRATION)
  end

  def down
    # no-op
  end
end