Welcome to mirror list, hosted at ThFree Co, Russian Federation.

foss_my_batched_migration.txt « expected_files « batched_background_migration « generators « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c2e1f4fc04302b4ed4719b15333ba0c28f57414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # TODO Add a top-level documentation comment for the class
    class MyBatchedMigration < BatchedMigrationJob
      feature_category :database

      def perform; end
    end
  end
end

Gitlab::BackgroundMigration::MyBatchedMigration.prepend_mod