Bug 5702 - Realtime patch for meetme

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12232 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2006-03-07 01:12:09 +00:00
parent 9756cec534
commit bb92e0ec1f
3 changed files with 75 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
--
-- Table structure for Realtime meetme
--
CREATE TABLE meetme (
confno char(80) DEFAULT '0' NOT NULL,
pin char(20) NULL,
adminpin char(20) NULL,
members integer DEFAULT 0 NOT NULL,
PRIMARY KEY (confno)
);