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

remove_vulnerability_finding_links.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31fb5e97c5d8045356a02e21e76406b028118616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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').where(id: start_id..stop_id).delete_all
      end
    end
  end
end