18 lines
551 B
Ruby
18 lines
551 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
# rubocop: disable Style/Documentation
|
|
class MigrateSharedVulnerabilityIdentifiers < BatchedMigrationJob
|
|
# rubocop: enable Style/Documentation
|
|
|
|
feature_category :vulnerability_management
|
|
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
# rubocop: disable Layout/LineLength
|
|
Gitlab::BackgroundMigration::MigrateSharedVulnerabilityIdentifiers.prepend_mod_with("Gitlab::BackgroundMigration::MigrateSharedVulnerabilityIdentifiers")
|
|
# rubocop: enable Layout/LineLength
|