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

20180612103626_add_columns_for_helm_tiller_certificates.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7273dff48ef6098925c7eba6c7d94c6736a83fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
class AddColumnsForHelmTillerCertificates < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :clusters_applications_helm, :encrypted_ca_key, :text
    add_column :clusters_applications_helm, :encrypted_ca_key_iv, :text
    add_column :clusters_applications_helm, :ca_cert, :text
  end
end