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

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

class AddPartialIndexForBatchingActiveClusterImageScanningVulnerabilities < Gitlab::Database::Migration[1.0]
  INDEX_NAME = 'index_vulnerabilities_on_project_id_and_id_active_cis'
  INDEX_FILTER_CONDITION = 'report_type = 7 AND state = ANY(ARRAY[1, 4])'

  disable_ddl_transaction!

  def up
    add_concurrent_index :vulnerabilities, [:project_id, :id], where: INDEX_FILTER_CONDITION, name: INDEX_NAME
  end

  def down
    remove_concurrent_index :vulnerabilities, [:project_id, :id], name: INDEX_NAME
  end
end