From 7e009cf30b85f5b009c1abba624d699eda599ab6 Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Thu, 27 Sep 2012 05:06:04 +0000 Subject: [PATCH] Corrected PK name for vm greetings table. --- app/voicemail_greetings/app_config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/voicemail_greetings/app_config.php b/app/voicemail_greetings/app_config.php index ec6c724e91..6d6b3513f2 100644 --- a/app/voicemail_greetings/app_config.php +++ b/app/voicemail_greetings/app_config.php @@ -66,7 +66,8 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = 'true'; $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'greeting_uuid'; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = 'voicemail_greeting_uuid'; + $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = 'greeting_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)';