debian-mirror-gitlab/lib/gitlab/background_migration/fix_security_scan_statuses.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
393 B
Ruby
Raw Normal View History

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