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/20230403085957_add_tmp_partial_index_on_vulnerability_report_types2.rb')
-rw-r--r--db/post_migrate/20230403085957_add_tmp_partial_index_on_vulnerability_report_types2.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/post_migrate/20230403085957_add_tmp_partial_index_on_vulnerability_report_types2.rb b/db/post_migrate/20230403085957_add_tmp_partial_index_on_vulnerability_report_types2.rb
new file mode 100644
index 00000000000..e37d197ad6d
--- /dev/null
+++ b/db/post_migrate/20230403085957_add_tmp_partial_index_on_vulnerability_report_types2.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class AddTmpPartialIndexOnVulnerabilityReportTypes2 < Gitlab::Database::Migration[2.1]
+ INDEX_NAME = 'tmp_idx_vulnerability_occurrences_on_id_where_report_type_7_99'
+ CLAUSE = 'report_type IN (7, 99)'
+
+ def up
+ return if index_exists?(:vulnerability_occurrences, :id, name: INDEX_NAME)
+
+ # Temporary index to be removed in 16.1 https://gitlab.com/gitlab-org/gitlab/-/issues/404408
+ prepare_async_index :vulnerability_occurrences, :id, where: CLAUSE, name: INDEX_NAME
+ end
+
+ def down
+ unprepare_async_index :vulnerability_occurrences, :id, name: INDEX_NAME
+ end
+end