Files
asterisk/contrib/scripts/meetme.sql
T

21 lines
588 B
SQL
Raw Normal View History

2006-03-07 01:12:09 +00:00
--
-- Table structure for Realtime meetme
--
CREATE TABLE meetme (
confno char(80) DEFAULT '0' NOT 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
2006-03-07 01:12:09 +00:00
pin char(20) NULL,
-- PIN to enter the conference as an administrator, if any
2006-03-07 01:12:09 +00:00
adminpin char(20) NULL,
-- Current count of conference participants
2006-03-07 01:12:09 +00:00
members integer DEFAULT 0 NOT NULL,
-- Maximum conference participants allowed concurrently
maxusers integer DEFAULT 0 NOT NULL,
PRIMARY KEY (confno, starttime)
2006-03-07 01:12:09 +00:00
);