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

module Gitlab
  module BackgroundMigration
    # Back-fill container_registry_size for project_statistics
    class BackfillProjectStatisticsContainerRepositorySize < Gitlab::BackgroundMigration::BatchedMigrationJob
      feature_category :database

      def perform
        # no-op
      end
    end
  end
end

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