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

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

class AddIndexToClusterAgentId < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  INDEX_NAME = "index_vulnerability_reads_on_cluster_agent_id"
  CLUSTER_IMAGE_SCANNING_REPORT_TYPE = 7

  def up
    add_concurrent_index :vulnerability_reads, :cluster_agent_id, where: "report_type = #{CLUSTER_IMAGE_SCANNING_REPORT_TYPE}", name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :vulnerability_reads, INDEX_NAME
  end
end