summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fix_security_scan_statuses.rb
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