Hi all: Somebody knows the mysql table structure for VoiceMail2 application? Thanks in advance, Gus
Ok, I found it. Sorry. ----- Original Message ----- From: "CW_ASN" <cw_asn@fibertel.com.ar> To: <asterisk-users@lists.digium.com> Sent: Saturday, September 13, 2003 8:06 PM Subject: [Asterisk-Users] VoiceMail2 mysql table structure> Hi all: > > Somebody knows the mysql table structure for VoiceMail2 application? > > Thanks in advance, > > Gus > > > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users
On Saturday 13 September 2003 18:06, CW_ASN wrote:> Somebody knows the mysql table structure for VoiceMail2 application?CREATE TABLE users ( context char(79) DEFAULT '' NOT NULL, mailbox char(79) DEFAULT '' NOT NULL, password char(79) DEFAULT '' NOT NULL, fullname char(79) DEFAULT '' NOT NULL, email char(79) DEFAULT '' NOT NULL, pager char(79) DEFAULT '' NOT NULL, options char(159) DEFAULT '' NOT NULL, stamp timestamp, PRIMARY KEY (context,mailbox) ); -Tilghman