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

16 lines
290 B
Ruby

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