From 8cbfc0b9d48b7164d57aaf78b013e414cee25e19 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 12 Nov 2014 02:15:57 +0000 Subject: [PATCH] Deprecate contact_groups_uuid and change it to contact_group_uuid. --- app/contacts/app_config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/contacts/app_config.php b/app/contacts/app_config.php index b3ba16db1d..4d73ab2322 100644 --- a/app/contacts/app_config.php +++ b/app/contacts/app_config.php @@ -393,7 +393,8 @@ $y = 4; //table array index $apps[$x]['db'][$y]['table'] = "v_contact_groups"; - $apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_group_uuid"; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "contact_group_uuid"; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "contact_groups_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)";