Files
gitlab-foss/lib/gitlab/background_migration/backfill_reserved_storage_bytes.rb
2024-08-05 12:12:43 +00:00

14 lines
286 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
class BackfillReservedStorageBytes < BatchedMigrationJob
feature_category :global_search
def perform; end
end
end
end
Gitlab::BackgroundMigration::BackfillReservedStorageBytes.prepend_mod