debian-mirror-gitlab/db/post_migrate/20211213064821_add_agent_id_location_index_to_vulnerability_occurrences.rb
2022-01-26 12:08:38 +05:30

19 lines
546 B
Ruby

# frozen_string_literal: true
class AddAgentIdLocationIndexToVulnerabilityOccurrences < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
INDEX_NAME = 'index_vulnerability_occurrences_on_location_agent_id'
def up
add_concurrent_index :vulnerability_occurrences, "(location -> 'agent_id')",
using: 'GIN',
where: 'report_type = 7',
name: INDEX_NAME
end
def down
remove_concurrent_index_by_name :vulnerability_occurrences, INDEX_NAME
end
end