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

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class BackfillEpicCacheCounts < Gitlab::BackgroundMigration::BatchedMigrationJob
      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