[svn-commits] tilghman: branch 1.6.1 r198628 - in /branches/1.6.1: ./ contrib/scripts/

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


Author: tilghman
Date: Mon Jun  1 13:44:21 2009
New Revision: 198628

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=198628
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.1/   (props changed)
    branches/1.6.1/contrib/scripts/meetme.sql

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

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