You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asterisk/contrib/scripts/meetme.sql

25 lines
766 B

--
-- 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
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
maxusers integer DEFAULT 0 NOT NULL,
PRIMARY KEY (confno, starttime)
);