debian-mirror-gitlab/db/migrate/20180612103626_add_columns_for_helm_tiller_certificates.rb
2018-11-18 11:00:15 +05:30

13 lines
388 B
Ruby

# 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