Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20201111110318_add_cloud_license_auth_token_to_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2069835597f7e433d02f4e7114048ce947bcda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddCloudLicenseAuthTokenToSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20201111110918_add_cloud_license_auth_token_application_settings_text_limit
  def change
    add_column :application_settings, :encrypted_cloud_license_auth_token, :text
    add_column :application_settings, :encrypted_cloud_license_auth_token_iv, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end