# 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