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

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

      def perform; end
    end
    # rubocop: enable Style/Documentation
  end
end

# rubocop: disable Layout/LineLength
Gitlab::BackgroundMigration::BackfillEpicCacheCounts.prepend_mod_with('Gitlab::BackgroundMigration::BackfillEpicCacheCounts')
# rubocop: enable Layout/LineLength