From 4ddcb7f205eb7bd9fd5e3b0718bfd7285c44380c Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 14 Jan 2017 11:17:03 -0700 Subject: [PATCH] Add app_uuid to default settings schema. --- core/default_settings/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/default_settings/app_config.php b/core/default_settings/app_config.php index bddbe35de5..dfef33e9c0 100644 --- a/core/default_settings/app_config.php +++ b/core/default_settings/app_config.php @@ -487,6 +487,11 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)"; $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary"; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "app_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)"; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "default_setting_category"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the category.";