debian-mirror-gitlab/db/migrate/20220120160625_remove_temp_index_on_id_from_vulnerability_occurrences.rb
2022-06-21 17:19:12 +05:30

16 lines
455 B
Ruby

# frozen_string_literal: true
class RemoveTempIndexOnIdFromVulnerabilityOccurrences < Gitlab::Database::Migration[1.0]
INDEX_NAME = 'tmp_idx_vulnerability_occurrences_on_id_where_report_type_7_99'
disable_ddl_transaction!
def up
remove_concurrent_index_by_name :vulnerability_occurrences, name: INDEX_NAME
end
def down
add_concurrent_index :vulnerability_occurrences, :id, where: 'report_type IN (7, 99)', name: INDEX_NAME
end
end