mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
18 lines
523 B
Ruby
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
|