summaryrefslogtreecommitdiff
path: root/db/migrate/20221209174132_remove_sbom_occurrences_unique_index.rb
blob: 1bee62b5b1f021de7d873c7cab758cbf7d38ede5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class RemoveSbomOccurrencesUniqueIndex < Gitlab::Database::Migration[2.1]
  INDEX_NAME = 'index_sbom_occurrences_on_ingestion_attributes'
  ATTRIBUTES = %i[
    project_id
    component_id
    component_version_id
    source_id
    commit_sha
  ].freeze

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :sbom_occurrences, name: INDEX_NAME
  end

  def down
    add_concurrent_index :sbom_occurrences, ATTRIBUTES, unique: true, name: INDEX_NAME
  end
end