summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/remove_duplicated_cs_findings_without_vulnerability_id.rb
blob: e5772fc73755fe53106e59a770d48ec420c4c89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class RemoveDuplicatedCsFindingsWithoutVulnerabilityId
      def perform(start_id, stop_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::RemoveDuplicatedCsFindingsWithoutVulnerabilityId.prepend_mod_with('Gitlab::BackgroundMigration::RemoveDuplicatedCsFindingsWithoutVulnerabilityId')