2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddAssetProxySettings < ActiveRecord::Migration[5.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
# Set this constant to true if this migration requires downtime.
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column :application_settings, :asset_proxy_enabled, :boolean, default: false, null: false
|
2019-12-04 20:38:33 +05:30
|
|
|
add_column :application_settings, :asset_proxy_url, :string # rubocop:disable Migration/AddLimitToStringColumns
|
2019-09-04 21:01:54 +05:30
|
|
|
add_column :application_settings, :asset_proxy_whitelist, :text
|
|
|
|
add_column :application_settings, :encrypted_asset_proxy_secret_key, :text
|
2019-12-04 20:38:33 +05:30
|
|
|
add_column :application_settings, :encrypted_asset_proxy_secret_key_iv, :string # rubocop:disable Migration/AddLimitToStringColumns
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|
|
|
|
end
|