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