mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
13 lines
288 B
Ruby
13 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
class CreateVulnerabilityLinks < BatchedMigrationJob
|
|
feature_category :vulnerability_management
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
Gitlab::BackgroundMigration::CreateVulnerabilityLinks.prepend_mod
|