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

20190918121135_add_cleanup_status_reason_to_cluster.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e71905e3a348d8529b65dea90ec60e0406ffaab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class AddCleanupStatusReasonToCluster < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def change
    add_column :clusters, :cleanup_status_reason, :text
  end
end