From c22ada9c3894270ed8bfb88d28270d8bc7a618e4 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Wed, 1 Apr 2015 07:40:34 +0000 Subject: [PATCH] Add greeting_id to the voicemail greetings table. --- app/voicemail_greetings/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/voicemail_greetings/app_config.php b/app/voicemail_greetings/app_config.php index 7c8a2199f0..e08f842a7a 100644 --- a/app/voicemail_greetings/app_config.php +++ b/app/voicemail_greetings/app_config.php @@ -95,6 +95,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "greeting_id"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "greeting_name"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";