aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-01 18:44:21 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-01 18:44:21 +0000
commitd4a72269d117093d3b9f8903b266dda13f5ce7f0 (patch)
tree2f92e341f3beea6d47c210fc7490d1dbb86c05e7 /contrib
parent888efbd8f985e3473f8693f3bff8e9d736667905 (diff)
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@198628 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rw-r--r--contrib/scripts/meetme.sql10
1 files changed, 9 insertions, 1 deletions
diff --git a/contrib/scripts/meetme.sql b/contrib/scripts/meetme.sql
index 19c4ed745..334d9ba57 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)
);