From e9dec6c366c79489dc79bd8cb7bf9b5c52223e1e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 23 Dec 2016 01:02:06 -0700 Subject: [PATCH] Update app_config.php Add hostname to the gateways table. --- app/dialplan/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/dialplan/app_config.php b/app/dialplan/app_config.php index 2b82c7d2a8..7818de5a9e 100644 --- a/app/dialplan/app_config.php +++ b/app/dialplan/app_config.php @@ -92,6 +92,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "hostname"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "dialplan_context"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";