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

20220607082910_add_sync_tmp_index_for_potentially_misassociated_vulnerability_occurrences.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe4ffbf6cc3736767bc59637c0c0395a5ed7b789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class AddSyncTmpIndexForPotentiallyMisassociatedVulnerabilityOccurrences < Gitlab::Database::Migration[2.0]
  INDEX_NAME = "tmp_index_vulnerability_occurrences_on_id_and_scanner_id"
  REPORT_TYPES = { cluster_image_scanning: 7, generic: 99 }.freeze
  CLAUSE = "report_type IN (#{REPORT_TYPES.values.join(',')})"

  disable_ddl_transaction!

  def up
    add_concurrent_index :vulnerability_occurrences,
                         [:id, :scanner_id],
                         where: CLAUSE,
                         name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :vulnerability_occurrences, INDEX_NAME
  end
end