gitlab-org--gitlab-foss/lib/gitlab/background_migration/fill_file_store_upload.rb

22 lines
551 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# rubocop:disable Metrics/AbcSize
# rubocop:disable Style/Documentation
module Gitlab
module BackgroundMigration
class FillFileStoreUpload
class Upload < ActiveRecord::Base
self.table_name = 'uploads'
self.inheritance_column = :_type_disabled
end
def perform(start_id, stop_id)
2018-04-27 06:38:14 +00:00
Gitlab::BackgroundMigration::FillFileStoreUpload::Upload
.where('store is NULL')
.where(id: (start_id..stop_id))
.update_all(store: 1)
end
end
end
end