17 lines
494 B
Ruby
17 lines
494 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module BackgroundMigration
|
||
|
# rubocop: disable Style/Documentation
|
||
|
class MigrateSharedVulnerabilityScanners < BatchedMigrationJob
|
||
|
def perform
|
||
|
end
|
||
|
end
|
||
|
# rubocop: enable Style/Documentation
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# rubocop: disable Layout/LineLength
|
||
|
Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners.prepend_mod_with("Gitlab::BackgroundMigration::MigrateSharedVulnerabilityScanners")
|
||
|
# rubocop: enable Layout/LineLength
|