debian-mirror-gitlab/db/migrate/20200513235347_fill_store_uploads.rb
2020-05-24 23:13:21 +05:30

20 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