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

20181016141739_add_status_to_deployments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 103bd9cc56da763dd94e8ef02c22c91ae90077c4 (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
28
29
30
31
32
33
# frozen_string_literal: true

class AddStatusToDeployments < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DEPLOYMENT_STATUS_SUCCESS = 2 # Equivalent to Deployment.state_machine.states['success'].value

  DOWNTIME = false

  disable_ddl_transaction!

  ##
  # NOTE:
  # Ideally, `status` column should not have default value because it should be leveraged by state machine (i.e. application level).
  # However, we have to use the default value for avoiding `NOT NULL` violation during the transition period.
  # The default value should be removed in the future release.
  # rubocop:disable Migration/AddColumnWithDefault
  # rubocop:disable Migration/UpdateLargeTable
  def up
    add_column_with_default(:deployments,
      :status,
      :integer,
      limit: 2,
      default: DEPLOYMENT_STATUS_SUCCESS,
      allow_null: false)
  end
  # rubocop:enable Migration/AddColumnWithDefault
  # rubocop:enable Migration/UpdateLargeTable

  def down
    remove_column(:deployments, :status)
  end
end