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

13 lines
393 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
class AddColumnsForHelmTillerCertificates < ActiveRecord::Migration[4.2]
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