debian-mirror-gitlab/db/migrate/20180612103626_add_columns_for_helm_tiller_certificates.rb
2019-02-15 15:39:39 +05:30

13 lines
393 B
Ruby

# 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