Update app_config.php (#5043)

* Update app_config.php
This commit is contained in:
chansizzle 2020-01-08 20:46:45 -07:00 committed by FusionPBX
parent 63c8cb9eda
commit 70a374d19b
1 changed files with 5 additions and 0 deletions

View File

@ -71,14 +71,17 @@
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "var_category";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "var_cat";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_name";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_value";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_command";
@ -89,6 +92,7 @@
$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'] = "char(255)";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "var_enabled";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
@ -101,6 +105,7 @@
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "var_description";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "var_desc";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
?>