15 lines
359 B
Ruby
15 lines
359 B
Ruby
|
# 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
|