From: Tilghman Lesher Date: Tue, 14 Jul 2009 20:25:34 +0000 (+0000) Subject: Recorded merge of revisions 206567 via svnmerge from X-Git-Tag: 1.6.1.3-rc1~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=733fc802ebcf8e59d226dd0ee16b4ed519927618;p=thirdparty%2Fasterisk.git Recorded merge of revisions 206567 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r206567 | tilghman | 2009-07-14 15:14:45 -0500 (Tue, 14 Jul 2009) | 6 lines 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: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@206596 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/scripts/meetme.sql b/contrib/scripts/meetme.sql index 334d9ba571..26998c8487 100644 --- a/contrib/scripts/meetme.sql +++ b/contrib/scripts/meetme.sql @@ -9,8 +9,12 @@ CREATE TABLE meetme ( endtime datetime NULL, -- PIN to enter the conference, if any pin char(20) 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, + -- 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