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: 1cfc9a278b713279205c6ce0a1fb494ea26b1807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Fixes the `status` attribute of `security_scans` records
    class FixSecurityScanStatuses < BatchedMigrationJob
      feature_category :database

      def perform
        # no-op. The logic is defined in EE module.
      end
    end
  end
end

::Gitlab::BackgroundMigration::FixSecurityScanStatuses.prepend_mod