aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-14 20:14:45 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-14 20:14:45 +0000
commit951ab4cce7466a1f61ea08d3a85089a7bd95d43e (patch)
treeeeeb50bd6be06389c37397855c6dcc3d13493750 /contrib
parent13be6dd3b9ecd92571fdbc83f8ab3e7ef1f32ac9 (diff)
Document all meetme realtime fields, and in the process, make some field lengths more consistent.
(closes issue #15493) Reported by: lasko Patches: meetme.diff uploaded by lasko (license 833) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@206567 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rw-r--r--contrib/scripts/meetme.sql14
1 files changed, 12 insertions, 2 deletions
diff --git a/contrib/scripts/meetme.sql b/contrib/scripts/meetme.sql
index 334d9ba57..cb96e630c 100644
--- a/contrib/scripts/meetme.sql
+++ b/contrib/scripts/meetme.sql
@@ -4,17 +4,27 @@
CREATE TABLE meetme (
confno char(80) DEFAULT '0' NOT NULL,
+ -- Web booking id for the conference
+ bookId char(50) 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 char(30) NULL,
+ -- Options to associate with normal users of the conference
+ opts char(100) NULL,
-- PIN to enter the conference as an administrator, if any
- adminpin char(20) NULL,
+ adminpin char(30) NULL,
+ -- Options to associate with administrator users of the conference
+ adminopts char(100) NULL,
-- Current count of conference participants
members integer DEFAULT 0 NOT NULL,
-- Maximum conference participants allowed concurrently
maxusers integer DEFAULT 0 NOT NULL,
+ -- Recording of the conference, if any
+ recordingfilename char(255) NULL,
+ -- File format of the conference recording, if any
+ recordingformat char(10) NULL,
PRIMARY KEY (confno, starttime)
);