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

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

module Gitlab
  module BackgroundMigration
    # Fixes the `status` attribute of `security_scans` records
    class FixSecurityScanStatuses < BatchedMigrationJob
      def perform
        # no-op. The logic is defined in EE module.
      end
    end
  end
end

::Gitlab::BackgroundMigration::FixSecurityScanStatuses.prepend_mod