[svn-commits] tilghman: trunk r198626 - /trunk/contrib/scripts/meetme.sql
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Jun 1 13:40:39 CDT 2009
Author: tilghman
Date: Mon Jun 1 13:40:35 2009
New Revision: 198626
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=198626
Log:
Add information for new meetme realtime fields
Modified:
trunk/contrib/scripts/meetme.sql
Modified: trunk/contrib/scripts/meetme.sql
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/contrib/scripts/meetme.sql?view=diff&rev=198626&r1=198625&r2=198626
==============================================================================
--- trunk/contrib/scripts/meetme.sql (original)
+++ trunk/contrib/scripts/meetme.sql Mon Jun 1 13:40:35 2009
@@ -4,9 +4,17 @@
CREATE TABLE meetme (
confno char(80) DEFAULT '0' NOT NULL,
+ -- Must set schedule=yes in meetme.conf to use starttime and endtime
+ starttime datetime NULL,
+ endtime datetime NULL,
+ -- PIN to enter the conference, if any
pin char(20) NULL,
+ -- PIN to enter the conference as an administrator, if any
adminpin char(20) NULL,
+ -- Current count of conference participants
members integer DEFAULT 0 NOT NULL,
- PRIMARY KEY (confno)
+ -- Maximum conference participants allowed concurrently
+ maxusers integer DEFAULT 0 NOT NULL,
+ PRIMARY KEY (confno, starttime)
);
More information about the svn-commits
mailing list