From 9e6f345c5d529abfca004b61f8e86327963bcbed Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Thu, 18 Oct 2012 16:49:06 +0000 Subject: [PATCH] Add missing domain_uuid to v_user_settings. --- core/users/app_config.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/users/app_config.php b/core/users/app_config.php index 633dbe43ed..4901bcf951 100644 --- a/core/users/app_config.php +++ b/core/users/app_config.php @@ -381,6 +381,15 @@ $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'foreign'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ''; $z++; + $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'; + $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_domains'; + $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_setting_category'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the category.';