summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220127132201_cleanup_backfill_ci_project_mirrors.rb
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