Update app_config.php

This commit is contained in:
FusionPBX 2017-02-15 22:40:22 -07:00 committed by GitHub
parent 1cf96cb6fd
commit d58b983bb7
1 changed files with 9 additions and 7 deletions

View File

@ -84,9 +84,10 @@
$y++;
//schema details
$y = 0; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_follow_me";
$y=0;
$apps[$x]['db'][$y]['table']['name'] = "v_follow_me";
$apps[$x]['db'][$y]['table']['parent'] = "";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
@ -134,9 +135,10 @@
$z++;
//schema details
$y = 1; //table array index
$z = 0; //field array index
$apps[$x]['db'][$y]['table'] = "v_follow_me_destinations";
$y++;
$apps[$x]['db'][$y]['table']['name'] = "v_follow_me_destinations";
$apps[$x]['db'][$y]['table']['parent'] = "v_follow_me";
$z=0;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";