debian-mirror-gitlab/db/post_migrate/20211104165220_remove_vulnerability_finding_links.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
430 B
Ruby
Raw Normal View History

2022-01-26 12:08:38 +05:30
# frozen_string_literal: true
class RemoveVulnerabilityFindingLinks < Gitlab::Database::Migration[1.0]
2022-04-01 21:47:47 +05:30
# 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.
2022-01-26 12:08:38 +05:30
def up
2022-04-01 21:47:47 +05:30
# no op
2022-01-26 12:08:38 +05:30
end
def down
2022-04-01 21:47:47 +05:30
# no op
2022-01-26 12:08:38 +05:30
end
end