Commit ce07df77 authored by Brett Walker's avatar Brett Walker

disable cop Migration/AddLimitToStringColumns

parent 17c312d6
...@@ -8,9 +8,9 @@ class AddAssetProxySettings < ActiveRecord::Migration[5.0] ...@@ -8,9 +8,9 @@ class AddAssetProxySettings < ActiveRecord::Migration[5.0]
def change def change
add_column :application_settings, :asset_proxy_enabled, :boolean, default: false, null: false 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_url, :string # rubocop:disable Migration/AddLimitToStringColumns
add_column :application_settings, :asset_proxy_whitelist, :text 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, :text
add_column :application_settings, :encrypted_asset_proxy_secret_key_iv, :string add_column :application_settings, :encrypted_asset_proxy_secret_key_iv, :string # rubocop:disable Migration/AddLimitToStringColumns
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment