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

class AddCloudLicenseAuthTokenApplicationSettingsTextLimit < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_text_limit :application_settings, :encrypted_cloud_license_auth_token_iv, 255
  end

  def down
    remove_text_limit :application_settings, :encrypted_cloud_license_auth_token_iv
  end
end