summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230221093533_add_tmp_partial_index_on_vulnerability_report_types.rb
blob: 4800ce5ed4c757063b71bbc73c8efa8517503ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddTmpPartialIndexOnVulnerabilityReportTypes < 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
    # Temporary index to be removed in 15.11 https://gitlab.com/gitlab-org/gitlab/-/issues/393052
    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