Update app_config.php
This commit is contained in:
parent
35729fe6a4
commit
8276bc7b37
|
|
@ -117,9 +117,10 @@
|
|||
$y++;
|
||||
|
||||
//schema details
|
||||
$y = 0; //table array index
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_ring_groups";
|
||||
$y=0;
|
||||
$apps[$x]['db'][$y]['table']['name'] = "v_ring_groups";
|
||||
$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";
|
||||
|
|
@ -208,9 +209,10 @@
|
|||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
|
||||
$y = 1; //table array index
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_ring_group_destinations";
|
||||
$y++;
|
||||
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_destinations";
|
||||
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
||||
$z=0;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "ring_group_destination_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||
|
|
@ -252,9 +254,10 @@
|
|||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||
$z++;
|
||||
|
||||
$y = 2; //table array index
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_ring_group_users";
|
||||
$y++;
|
||||
$apps[$x]['db'][$y]['table']['name'] = "v_ring_group_users";
|
||||
$apps[$x]['db'][$y]['table']['parent'] = "v_ring_groups";
|
||||
$z=0;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "ring_group_user_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||
|
|
|
|||
Loading…
Reference in New Issue