File: meetme.sql

package info (click to toggle)
asterisk 1%3A1.6.2.9-2%2Bsqueeze12
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 67,296 kB
  • ctags: 65,026
  • sloc: ansic: 327,660; sh: 11,153; cpp: 5,940; perl: 3,078; makefile: 2,594; yacc: 2,140; asm: 642; xml: 309; sql: 290; tcl: 113; php: 62
file content (30 lines) | stat: -rw-r--r-- 986 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- 
-- Table structure for Realtime meetme
-- 

CREATE TABLE meetme (
	confno char(80) DEFAULT '0' NOT NULL,
	-- Web booking id for the conference
	bookId char(50) 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(30) 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(30) 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,
	-- Recording of the conference, if any
	recordingfilename char(255) NULL,
	-- File format of the conference recording, if any
	recordingformat char(10) NULL,
	PRIMARY KEY (confno, starttime)
);