[svn-commits] mjordan: trunk r370820 - /trunk/contrib/realtime/mysql/voicemail_data.sql

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Aug 6 12:00:31 CDT 2012


Author: mjordan
Date: Mon Aug  6 12:00:28 2012
New Revision: 370820

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=370820
Log:
Update the MySQL voicemail_data contrib script to reflect Asterisk 11 changes

All voicemails now have a 'msg_id' included in their metadata.  The ODBC
message storage backend now requires this column; as such, the MySQL contrib
script that creates the voicemail_data table has been updated with the appropriate
column information.

Modified:
    trunk/contrib/realtime/mysql/voicemail_data.sql

Modified: trunk/contrib/realtime/mysql/voicemail_data.sql
URL: http://svnview.digium.com/svn/asterisk/trunk/contrib/realtime/mysql/voicemail_data.sql?view=diff&rev=370820&r1=370819&r2=370820
==============================================================================
--- trunk/contrib/realtime/mysql/voicemail_data.sql (original)
+++ trunk/contrib/realtime/mysql/voicemail_data.sql Mon Aug  6 12:00:28 2012
@@ -23,7 +23,9 @@
 	-- Value of the channel variable VM_CATEGORY, if set
 	category CHAR(30),
 	-- Length of the message, in seconds
-	duration INT(11)
+	duration INT(11),
+	-- Unique identifier for the message
+	msg_id CHAR(32)
 );
 
 




More information about the svn-commits mailing list