debian-mirror-gitlab/db/post_migrate/20220426185933_backfill_deployments_finished_at.rb
2022-07-16 19:58:13 +02:00

21 lines
525 B
Ruby

# frozen_string_literal: true
class BackfillDeploymentsFinishedAt < Gitlab::Database::Migration[2.0]
DEPLOYMENT_STATUS_SUCCESS = 2 # Equivalent to Deployment.statuses[:success]
restrict_gitlab_migration gitlab_schema: :gitlab_main
BATCH_SIZE = 100
def up
define_batchable_model('deployments')
.where(finished_at: nil)
.where(status: DEPLOYMENT_STATUS_SUCCESS)
.each_batch(of: BATCH_SIZE) { |relation| relation.update_all('finished_at = created_at') }
end
def down
# no-op
end
end