debian-mirror-gitlab/db/post_migrate/20220127132201_cleanup_backfill_ci_project_mirrors.rb
2022-04-04 11:22:00 +05:30

15 lines
268 B
Ruby

# 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