From ee456b8a16dfde9a37286c58016c29e8e22d49cc Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 13 Nov 2013 07:54:05 +0000 Subject: [PATCH] Move sip profile hostname to the v_sip_profiles table. --- app/sip_profiles/app_config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/sip_profiles/app_config.php b/app/sip_profiles/app_config.php index 782eb3bf4f..fd94d1cfac 100644 --- a/app/sip_profiles/app_config.php +++ b/app/sip_profiles/app_config.php @@ -88,6 +88,11 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the SIP Profile name."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_hostname"; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "vachar(255)"; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_description"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description."; @@ -124,9 +129,4 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the description."; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = "sip_profile_hostname"; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "text"; - $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; - $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "vachar(255)"; - $z++; ?> \ No newline at end of file