summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/migrate_shared_vulnerability_scanners.rb
blob: d1acb8ca2d2ed18391c2906381863356650f593a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class MigrateSharedVulnerabilityScanners < BatchedMigrationJob
      feature_category :database

      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