gitlab-ce/lib/gitlab/background_migration/create_vulnerability_links.rb

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