Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211104165220_remove_vulnerability_finding_links.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1625d24ef92ce1a76e9e466b7bab91e440eb7f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class RemoveVulnerabilityFindingLinks < Gitlab::Database::Migration[1.0]
  # 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.

  def up
    # no op
  end

  def down
    # no op
  end
end