summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210921062820_add_image_location_index_to_vulnerability_occurrences.rb
blob: 7a6543395ff0e71c47ed5c8c8cf18a330929a79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

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

  INDEX_NAME = 'index_vulnerability_occurrences_on_location_image'

  def up
    add_concurrent_index :vulnerability_occurrences, "(location -> 'image')",
                         using: 'GIN',
                         where: 'report_type IN (2, 7)',
                         name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :vulnerability_occurrences, INDEX_NAME
  end
end