From: Tilghman Lesher Date: Mon, 1 Jun 2009 18:40:35 +0000 (+0000) Subject: Add information for new meetme realtime fields X-Git-Tag: 11.0.0-beta1~4746 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=469fb6b79abb8148e84a2f7954594a14da1fad4a;p=thirdparty%2Fasterisk.git Add information for new meetme realtime fields git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@198626 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/scripts/meetme.sql b/contrib/scripts/meetme.sql index 19c4ed7453..334d9ba571 100644 --- a/contrib/scripts/meetme.sql +++ b/contrib/scripts/meetme.sql @@ -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) );