debian-mirror-gitlab/db/migrate/20180612103626_add_columns_for_helm_tiller_certificates.rb

13 lines
388 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-01-03 12:48:30 +05:30
class AddColumnsForHelmTillerCertificates < ActiveRecord::Migration
2018-11-18 11:00:15 +05:30
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