mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-03 16:37:48 +00:00
15 lines
387 B
Ruby
15 lines
387 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
# Fixes the project_settings#has_vulnerabilities data inconsistencies
|
|
class FixProjectSettingsHasVulnerabilities < BatchedMigrationJob
|
|
feature_category :vulnerability_management
|
|
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
Gitlab::BackgroundMigration::FixProjectSettingsHasVulnerabilities.prepend_mod
|