[svn-commits] tilghman: branch 1.6.2 r198629 - in /branches/1.6.2: ./ contrib/scripts/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 1 13:45:02 CDT 2009


Author: tilghman
Date: Mon Jun  1 13:44:59 2009
New Revision: 198629

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=198629
Log:
Merged revisions 198626 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r198626 | tilghman | 2009-06-01 13:40:35 -0500 (Mon, 01 Jun 2009) | 2 lines
  
  Add information for new meetme realtime fields
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/contrib/scripts/meetme.sql

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/contrib/scripts/meetme.sql
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/contrib/scripts/meetme.sql?view=diff&rev=198629&r1=198628&r2=198629
==============================================================================
--- branches/1.6.2/contrib/scripts/meetme.sql (original)
+++ branches/1.6.2/contrib/scripts/meetme.sql Mon Jun  1 13:44:59 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