summaryrefslogtreecommitdiff
path: root/db/migrate/20210819152723_remove_tmp_index_approval_project_rules_scanners.rb
blob: a60141991a6500f7177aa65a7839d38df60ae837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class RemoveTmpIndexApprovalProjectRulesScanners < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  INDEX_NAME = 'tmp_index_approval_project_rules_scanners'

  def up
    remove_concurrent_index_by_name :approval_project_rules, INDEX_NAME
  end

  def down
    add_concurrent_index :approval_project_rules, :scanners, name: INDEX_NAME, using: :gin, where: "scanners @> '{cluster_image_scanning}'"
  end
end