17 lines
639 B
Ruby
17 lines
639 B
Ruby
|
# 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
|
||
|
add_column :application_settings, :asset_proxy_url, :string
|
||
|
add_column :application_settings, :asset_proxy_whitelist, :text
|
||
|
add_column :application_settings, :encrypted_asset_proxy_secret_key, :text
|
||
|
add_column :application_settings, :encrypted_asset_proxy_secret_key_iv, :string
|
||
|
end
|
||
|
end
|