Files
asterisk/contrib/realtime/mysql/meetme.sql
T

22 lines
528 B
SQL
Raw Normal View History

2010-07-13 14:48:40 +00:00
--
-- Table structure for Realtime meetme
--
CREATE TABLE meetme (
bookid int(11) auto_increment,
2010-07-13 14:48:40 +00:00
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',
2010-07-13 14:48:40 +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,
2010-07-13 14:48:40 +00:00
members integer DEFAULT 0 NOT NULL,
2011-05-05 23:13:04 +00:00
index confno (confno,starttime,endtime),
PRIMARY KEY (bookid)
2010-07-13 14:48:40 +00:00
);