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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/background_migration/remove_vulnerability_finding_links.rb')
-rw-r--r--lib/gitlab/background_migration/remove_vulnerability_finding_links.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/gitlab/background_migration/remove_vulnerability_finding_links.rb b/lib/gitlab/background_migration/remove_vulnerability_finding_links.rb
deleted file mode 100644
index 4acef9029f9..00000000000
--- a/lib/gitlab/background_migration/remove_vulnerability_finding_links.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module BackgroundMigration
- # Remove vulnerability finding link records
- # The records will be repopulated from the `raw_metadata`
- # column of `vulnerability_occurrences` once the unique
- # index is in place.
- class RemoveVulnerabilityFindingLinks
- include Gitlab::Database::DynamicModelHelpers
-
- def perform(start_id, stop_id)
- define_batchable_model('vulnerability_finding_links', connection: ApplicationRecord.connection)
- .where(id: start_id..stop_id)
- .delete_all
- end
- end
- end
-end