Move sip profile hostname to the v_sip_profiles table.

This commit is contained in:
Mark Crane 2013-11-13 07:54:05 +00:00
parent 67202ddb6e
commit ee456b8a16
1 changed files with 5 additions and 5 deletions

View File

@ -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++;
?>