This commit is contained in:
FusionPBX 2017-02-15 21:06:59 -07:00 committed by GitHub
parent 388480f244
commit 0013273d57
1 changed files with 11 additions and 10 deletions

View File

@ -105,9 +105,10 @@
$y++;
//schema details
$y = 0; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_ivr_menus";
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_ivr_menus";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "ivr_menu_id";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "serial";
@ -240,10 +241,10 @@
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
$z++;
//schema details
$y = 1; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_ivr_menu_options";
$y++;
$apps[$x]['db'][$y]['table']['name'] = "v_ivr_menu_options";
$apps[$x]['db'][$y]['table']['parent'] = "v_ivr_menus";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "ivr_menu_option_id";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "serial";