15 lines
363 B
Ruby
15 lines
363 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# rubocop:disable Style/Documentation
|
||
|
module Gitlab
|
||
|
module BackgroundMigration
|
||
|
class CreateVulnerabilityLinks < BatchedMigrationJob
|
||
|
feature_category :vulnerability_management
|
||
|
def perform; end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Gitlab::BackgroundMigration::CreateVulnerabilityLinks.prepend_mod
|
||
|
# rubocop:enable Style/Documentation
|