19 lines
345 B
Ruby
19 lines
345 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FillStoreUploads < ActiveRecord::Migration[6.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
update_column_in_batches(:uploads, :store, 1) do |table, query|
|
|
query.where(table[:store].eq(nil))
|
|
end
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|