summaryrefslogtreecommitdiff
path: root/db/migrate/20200130134335_add_cert_and_key_to_serverless_domain_cluster.rb
blob: 81764aefe7c117d5d7f1b8416236719d9d611afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddCertAndKeyToServerlessDomainCluster < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  # rubocop:disable Migration/AddLimitToTextColumns
  def change
    add_column :serverless_domain_cluster, :encrypted_key, :text
    add_column :serverless_domain_cluster, :encrypted_key_iv, :string, limit: 255
    add_column :serverless_domain_cluster, :certificate, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
  # rubocop:enable Migration/PreventStrings
end