Files
gitlab-foss/lib/gitlab/background_migration/migrate_shared_vulnerability_scanners.rb
2024-11-01 12:19:58 +00:00

16 lines
438 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
class MigrateSharedVulnerabilityScanners < BatchedMigrationJob
feature_category :database
def perform; end
end
end
end
# rubocop: disable Layout/LineLength
Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners.prepend_mod_with("Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners")
# rubocop: enable Layout/LineLength