debian-mirror-gitlab/lib/gitlab/background_migration/backfill_project_statistics_container_repository_size.rb
2022-08-13 15:12:31 +05:30

14 lines
522 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# Back-fill container_registry_size for project_statistics
class BackfillProjectStatisticsContainerRepositorySize < Gitlab::BackgroundMigration::BatchedMigrationJob
def perform
# no-op
end
end
end
end
Gitlab::BackgroundMigration::BackfillProjectStatisticsContainerRepositorySize.prepend_mod_with('Gitlab::BackgroundMigration::BackfillProjectStatisticsContainerRepositorySize') # rubocop:disable Layout/LineLength