debian-mirror-gitlab/db/migrate/20200617001118_clean_up_file_store_ci_job_artifacts.rb
2020-08-09 17:44:08 +05:30

24 lines
582 B
Ruby

# frozen_string_literal: true
class CleanUpFileStoreCiJobArtifacts < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
# rubocop:disable Migration/UpdateColumnInBatches
# rubocop:disable Migration/UpdateLargeTable
update_column_in_batches(:ci_job_artifacts, :file_store, 1) do |table, query|
query.where(table[:file_store].eq(nil))
end
# rubocop:enable Migration/UpdateColumnInBatches
# rubocop:enable Migration/UpdateLargeTable
end
def down
# no-op
end
end