2021-11-23 04:10:20 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoveVulnerabilityFindingLinks < Gitlab::Database::Migration[1.0]
|
2022-02-08 10:12:33 -05:00
|
|
|
# This migration has been moved to a TRUNCATE in 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.
|
2021-11-23 04:10:20 -05:00
|
|
|
|
|
|
|
def up
|
2022-02-08 10:12:33 -05:00
|
|
|
# no op
|
2021-11-23 04:10:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2022-02-08 10:12:33 -05:00
|
|
|
# no op
|
2021-11-23 04:10:20 -05:00
|
|
|
end
|
|
|
|
end
|