summaryrefslogtreecommitdiff
path: root/db/migrate/20180612103626_add_columns_for_helm_tiller_certificates.rb
blob: 57cea18abcd7d4c7854b1c4f5b1591856f2f5587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
class AddColumnsForHelmTillerCertificates < ActiveRecord::Migration
  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