2023-03-04 22:38:38 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
|
|
|
# Fixes the `status` attribute of `security_scans` records
|
|
|
|
class FixSecurityScanStatuses < BatchedMigrationJob
|
2023-03-17 16:20:25 +05:30
|
|
|
feature_category :database
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
def perform
|
|
|
|
# no-op. The logic is defined in EE module.
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
::Gitlab::BackgroundMigration::FixSecurityScanStatuses.prepend_mod
|