Parcourir la source

Add app_uuid to default settings schema.

FusionPBX il y a 8 ans
Parent
commit
c01e023722
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      core/default_settings/app_config.php

+ 5 - 0
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.";