mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
16 lines
438 B
Ruby
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
|