mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r317484 | russell | 2011-05-05 18:12:35 -0500 (Thu, 05 May 2011) | 8 lines Fix some errors in sample MySQL realtime schema files. (closes issue #18915) Reported by: Dovid Patches: sipfriends.patch uploaded by Dovid (license 652) meetme.patch uploaded by Dovid (license 652) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@317485 65c4cc65-6c06-0410-ace0-fbb531ad65f3
22 lines
528 B
SQL
22 lines
528 B
SQL
--
|
|
-- Table structure for Realtime meetme
|
|
--
|
|
|
|
CREATE TABLE meetme (
|
|
bookid int(11) auto_increment,
|
|
confno char(80) DEFAULT '0' NOT NULL,
|
|
starttime datetime default '1900-01-01 12:00:00',
|
|
endtime datetime default '2038-01-01 12:00:00',
|
|
pin char(20) NULL,
|
|
adminpin char(20) NULL,
|
|
opts char(20) NULL,
|
|
adminopts char(20) NULL,
|
|
recordingfilename char(80) NULL,
|
|
recordingformat char(10) NULL,
|
|
maxusers int(11) NULL,
|
|
members integer DEFAULT 0 NOT NULL,
|
|
index confno (confno,starttime,endtime),
|
|
PRIMARY KEY (bookid)
|
|
);
|
|
|