Files
gitlab-foss/db/post_migrate/20250513225311_queue_backfill_analyzer_project_statuses.rb
2025-06-05 00:07:27 +00:00

18 lines
523 B
Ruby

# frozen_string_literal: true
class QueueBackfillAnalyzerProjectStatuses < Gitlab::Database::Migration[2.3]
milestone '18.1'
MIGRATION = "BackfillAnalyzerProjectStatuses"
def up
# no-op because there was a bug in the original migration, which has been
# fixed by https://gitlab.com/gitlab-org/gitlab/-/merge_requests/193293
end
def down
# no-op because there was a bug in the original migration, which has been
# fixed by https://gitlab.com/gitlab-org/gitlab/-/merge_requests/193293
end
end