From d1305fda8deb983a99709fa8370d6d8fb13b5c36 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 16 May 2017 10:25:17 -0600 Subject: [PATCH] Update app_config.php --- app/call_centers/app_config.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/call_centers/app_config.php b/app/call_centers/app_config.php index 2642f889c0..c1e311d5a9 100644 --- a/app/call_centers/app_config.php +++ b/app/call_centers/app_config.php @@ -147,6 +147,15 @@ $apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "domain_uuid"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "user_uuid"; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid"; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)"; + $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "foreign"; + $apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = "v_users"; + $apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = "user_uuid"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "v_id"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";