summaryrefslogtreecommitdiff
path: root/db/migrate/20180824202952_add_outbound_requests_whitelist_to_application_settings.rb
blob: 7b87b04bc9dee8271d64efb0d427a96826416ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddOutboundRequestsWhitelistToApplicationSettings < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :application_settings, :outbound_local_requests_whitelist, :string, array: true, limit: 255
  end
  # rubocop:enable Migration/PreventStrings
end