class AddPassThroughToVpnConfigs < ActiveRecord::Migration[6.0]
  def change
    add_column :vpn_configs, :pass_through, :string
    add_column :vpn_configs, :enable_gateway, :boolean
    add_column :vpn_configs, :gateway_ip, :string
    add_column :vpn_configs, :enable_nat, :boolean
  end
end
