aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/scripts/meetme.sql
blob: 26998c8487e17c7e217dbd438261dd52de1f9263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- 
-- 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)
);