debian-mirror-gitlab/db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb
2023-06-20 00:43:36 +05:30

14 lines
382 B
Ruby

# frozen_string_literal: true
class RemoveTmpIndexVulnOccurrencesOnReportType < Gitlab::Database::Migration[2.1]
def up
# no-op
# This migration was reverted as it removed a temporary index necessary for a background migration.
# The migration file is re-added to ensure that all environments have the same list of migrations.
end
def down
# no-op
end
end