gitlab-org--gitlab-foss/db/post_migrate/20220127132200_cleanup_back...

16 lines
272 B
Ruby

# frozen_string_literal: true
class CleanupBackfillCiNamespaceMirrors < Gitlab::Database::Migration[1.0]
MIGRATION = 'BackfillCiNamespaceMirrors'
disable_ddl_transaction!
def up
finalize_background_migration(MIGRATION)
end
def down
# no-op
end
end