Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb')
-rw-r--r--db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb b/db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb
new file mode 100644
index 00000000000..27e5b370efc
--- /dev/null
+++ b/db/post_migrate/20230330080731_remove_tmp_index_vuln_occurrences_on_report_type.rb
@@ -0,0 +1,13 @@
+# 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