gitlab-org--gitlab-foss/db/migrate/20210811193033_add_unique_i...

15 lines
426 B
Ruby

# frozen_string_literal: true
class AddUniqueIndexToVulnerabilityFindingLinks < Gitlab::Database::Migration[1.0]
# This migration has been moved to db/post_migrate/20220201193033_add_unique_index_to_vulnerability_finding_links_with_truncate.rb
# Previously, this was causing an bug where there was a conflict between the table cleanup and the index creation.
def up
# no op
end
def down
# no op
end
end