Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20181030135124_fill_empty_finished_at_in_deployments.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32b271c472a731b7777da996def4fd8bfe13a9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class FillEmptyFinishedAtInDeployments < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  DEPLOYMENT_STATUS_SUCCESS = 2 # Equivalent to Deployment.statuses[:success]

  class Deployments < ActiveRecord::Base
    self.table_name = 'deployments'

    include EachBatch
  end

  def up
    FillEmptyFinishedAtInDeployments::Deployments
      .where('finished_at IS NULL')
      .where('status = ?', DEPLOYMENT_STATUS_SUCCESS)
      .each_batch(of: 10_000) do |relation|
      relation.update_all('finished_at=created_at')
    end
  end

  def down
    # no-op
  end
end