summaryrefslogtreecommitdiffstats
path: root/create/schema/schema.sql
blob: 650cfa37fd13c57bd6756de93f0af8877882d0ad (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
-- 
-- ZABBIX
-- Copyright (C) 2000-2005 SIA Zabbix
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
--

--
-- Table structure for table 'nodes'
--

CREATE TABLE nodes (
	nodeid			{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(64)		DEFAULT '' NOT NULL,
	timezone		{integer}		DEFAULT '0' NOT NULL,
	ip			{varchar}(15)		DEFAULT '' NOT NULL,
	port			{integer}		DEFAULT '0' NOT NULL,
	slave_history		{integer}		DEFAULT '0' NOT NULL,
	slave_trends		{integer}		DEFAULT '0' NOT NULL,
	event_lastid		{bigint}		DEFAULT '0' NOT NULL,
	history_lastid		{bigint}		DEFAULT '0' NOT NULL,
	nodetype		{integer}		DEFAULT '0' NOT NULL,
	masterid		{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (nodeid)
) {create_table_opt};

CREATE TABLE node_cksum (
	cksumid			{bigint}		DEFAULT '0' NOT NULL,
	nodeid			{bigint}		DEFAULT '0' NOT NULL,
	tablename		{varchar}(64)	DEFAULT '' NOT NULL,
	fieldname		{varchar}(64)	DEFAULT '' NOT NULL,
	recordid		{bigint}		DEFAULT '0' NOT NULL,
	cksumtype		{integer}		DEFAULT '0' NOT NULL,
	cksum			{char}(32)	DEFAULT '' NOT NULL,
	PRIMARY KEY (cksumid)
) {create_table_opt};

CREATE INDEX node_cksum_1 ON node_cksum (nodeid,tablename,fieldname,recordid,cksumtype);

CREATE TABLE node_configlog (
	conflogid		{bigint}		DEFAULT '0' NOT NULL,
	nodeid			{bigint}		DEFAULT '0' NOT NULL,
	tablename		{varchar}(64)	DEFAULT '' NOT NULL,
	recordid		{bigint}		DEFAULT '0' NOT NULL,
	operation		{integer}	DEFAULT '0' NOT NULL,
	sync_master		{integer}		DEFAULT '0' NOT NULL,
	sync_slave		{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (nodeid,conflogid)
) {create_table_opt};

CREATE INDEX node_configlog_1 ON node_configlog (conflogid);
CREATE INDEX node_configlog_2 ON node_configlog (nodeid,tablename);

CREATE TABLE services (
	serviceid		{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(128)	DEFAULT '' NOT NULL,
	status			{integer}		DEFAULT '0' NOT NULL,
	algorithm		{integer}		DEFAULT '0' NOT NULL,
	triggerid		{bigint},
	showsla			{integer}		DEFAULT '0' NOT NULL,
	goodsla			{double}(5,2)	DEFAULT '99.9' NOT NULL,
	sortorder		{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (serviceid)
) {create_table_opt};

CREATE TABLE services_times (
	timeid		{bigint}		DEFAULT '0' NOT NULL,
	serviceid	{bigint}		DEFAULT '0' NOT NULL,
	type		{integer}		DEFAULT '0' NOT NULL,
	ts_from		{integer}		DEFAULT '0' NOT NULL,
	ts_to		{integer}		DEFAULT '0' NOT NULL,
	note		{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY (timeid)
) {create_table_opt};

CREATE INDEX services_times_1 ON services_times (serviceid,type,ts_from,ts_to);

CREATE TABLE services_links (
	linkid			{bigint}		DEFAULT '0' NOT NULL,
	serviceupid		{bigint}		DEFAULT '0' NOT NULL,
	servicedownid		{bigint}		DEFAULT '0' NOT NULL,
	soft			{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (linkid)
) {create_table_opt};

CREATE INDEX services_links_1 ON services_links (servicedownid);
CREATE INDEX services_links_2 ON services_links (serviceupid,servicedownid);

CREATE TABLE graphs_items (
	gitemid		{bigint}		DEFAULT '0' NOT NULL,
	graphid		{bigint}		DEFAULT '0' NOT NULL,
	itemid		{bigint}		DEFAULT '0' NOT NULL,
	drawtype	{integer}		DEFAULT '0' NOT NULL,
	sortorder	{integer}		DEFAULT '0' NOT NULL,
	color		{varchar}(32)	DEFAULT 'Dark Green' NOT NULL,
	yaxisside	{integer}		DEFAULT '1' NOT NULL,
	calc_fnc	{integer}		DEFAULT '2' NOT NULL,
	type		{integer}		DEFAULT '0' NOT NULL,
	periods_cnt	{integer}		DEFAULT '5' NOT NULL,
	PRIMARY KEY (gitemid)
) {create_table_opt};

CREATE TABLE graphs (
	graphid			{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(128)	DEFAULT '' NOT NULL,
	width			{integer}		DEFAULT '0' NOT NULL,
	height			{integer}		DEFAULT '0' NOT NULL,
	yaxistype		{integer}		DEFAULT '0' NOT NULL,
	yaxismin		{double}(16,4)	DEFAULT '0' NOT NULL,
	yaxismax		{double}(16,4)	DEFAULT '0' NOT NULL,
	templateid		{bigint}		DEFAULT '0' NOT NULL,
	show_work_period	{integer}		DEFAULT '1' NOT NULL,
	show_triggers		{integer}		DEFAULT '1' NOT NULL,
	graphtype		{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (graphid)
) {create_table_opt};

CREATE INDEX graphs_1 ON graphs (name);

CREATE TABLE sysmaps_links (
	linkid			{bigint}		DEFAULT '0' NOT NULL,
	sysmapid		{bigint}		DEFAULT '0' NOT NULL,
	selementid1		{bigint}		DEFAULT '0' NOT NULL,
	selementid2		{bigint}		DEFAULT '0' NOT NULL,
	triggerid		{bigint},
	drawtype_off		{integer}		DEFAULT '0' NOT NULL,
	color_off		{varchar}(32)	DEFAULT 'Black' NOT NULL,
	drawtype_on		{integer}		DEFAULT '0' NOT NULL,
	color_on		{varchar}(32)	DEFAULT 'Red' NOT NULL,
	PRIMARY KEY (linkid)
) {create_table_opt};

CREATE TABLE sysmaps_elements (
	selementid		{bigint}		DEFAULT '0' NOT NULL,
	sysmapid		{bigint}		DEFAULT '0' NOT NULL,
	elementid		{bigint}		DEFAULT '0' NOT NULL,
	elementtype		{integer}		DEFAULT '0' NOT NULL,
	icon			{varchar}(32)	DEFAULT 'Server' NOT NULL,
	icon_on			{varchar}(32)	DEFAULT 'Server' NOT NULL,
	label			{varchar}(128)	DEFAULT '' NOT NULL,
	label_location		{integer}		DEFAULT NULL,
	x			{integer}		DEFAULT '0' NOT NULL,
	y			{integer}		DEFAULT '0' NOT NULL,
	url			{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY (selementid)
) {create_table_opt};

CREATE TABLE sysmaps (
	sysmapid		{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(128)	DEFAULT '' NOT NULL,
	width			{integer}		DEFAULT '0' NOT NULL,
	height			{integer}		DEFAULT '0' NOT NULL,
	background		{varchar}(64)	DEFAULT '' NOT NULL,
	label_type		{integer}		DEFAULT '0' NOT NULL,
	label_location		{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (sysmapid)
) {create_table_opt};

CREATE INDEX sysmaps_1 ON sysmaps (name);

CREATE TABLE config (
	configid		{bigint}		DEFAULT '0' NOT NULL,
	alert_history		{integer}		DEFAULT '0' NOT NULL,
	event_history		{integer}		DEFAULT '0' NOT NULL,
	refresh_unsupported	{integer}		DEFAULT '0' NOT NULL,
	work_period		{varchar}(100)	DEFAULT '1-5,00:00-24:00' NOT NULL,
	PRIMARY KEY (configid)
) {create_table_opt};

CREATE TABLE groups (
	groupid			{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(64)	DEFAULT '' NOT NULL,
	PRIMARY KEY (groupid)
) {create_table_opt};

CREATE INDEX groups_1 ON groups (name);

CREATE TABLE hosts_groups (
	hostgroupid		{bigint}		DEFAULT '0' NOT NULL,
	hostid			{bigint}		DEFAULT '0' NOT NULL,
	groupid			{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (hostgroupid)
) {create_table_opt};

CREATE INDEX hosts_groups_1 ON hosts_groups (hostid,groupid);

CREATE TABLE alerts (
	alertid			{bigint}		DEFAULT '0' NOT NULL,
	actionid		{bigint}		DEFAULT '0' NOT NULL,
	triggerid		{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	mediatypeid		{bigint}		DEFAULT '0' NOT NULL,
	sendto			{varchar}(100)	DEFAULT '' NOT NULL,
	subject			{varchar}(255)	DEFAULT '' NOT NULL,
	message			{blob}		DEFAULT '' NOT NULL,
	status			{integer}		DEFAULT '0' NOT NULL,
	retries			{integer}		DEFAULT '0' NOT NULL,
	error			{varchar}(128)	DEFAULT '' NOT NULL,
	repeats			{integer}		DEFAULT '0' NOT NULL,
	maxrepeats		{integer}		DEFAULT '0' NOT NULL,
	nextcheck		{integer}		DEFAULT '0' NOT NULL,
	delay			{integer}		DEFAULT '0' NOT NULL,

	PRIMARY KEY (alertid)
) {create_table_opt};

CREATE INDEX alerts_1 ON alerts (actionid);
CREATE INDEX alerts_2 ON alerts (clock);
CREATE INDEX alerts_3 ON alerts (triggerid);
CREATE INDEX alerts_4 ON alerts (status, retries);
CREATE INDEX alerts_5 ON alerts (mediatypeid);
CREATE INDEX alerts_6 ON alerts (userid);

CREATE TABLE actions (
	actionid		{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	subject			{varchar}(255)	DEFAULT '' NOT NULL,
	message			{blob}		DEFAULT '' NOT NULL,
	recipient		{integer}		DEFAULT '0' NOT NULL,
	maxrepeats		{integer}		DEFAULT '0' NOT NULL,
	repeatdelay		{integer}		DEFAULT '600' NOT NULL,
	source			{integer}		DEFAULT '0' NOT NULL,
	actiontype		{integer}		DEFAULT '0' NOT NULL,
	status			{integer}		DEFAULT '0' NOT NULL,
	scripts			{blob}		DEFAULT '' NOT NULL,
	PRIMARY KEY (actionid)
) {create_table_opt};

CREATE TABLE conditions (
	conditionid		{bigint}		DEFAULT '0' NOT NULL,
	actionid		{bigint}		DEFAULT '0' NOT NULL,
	conditiontype		{integer}		DEFAULT '0' NOT NULL,
	operator		{integer}		DEFAULT '0' NOT NULL,
	value			{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY (conditionid)
) {create_table_opt};

CREATE INDEX conditions_1 ON conditions (actionid);

CREATE TABLE events (
	eventid			{bigint}		DEFAULT '0' NOT NULL,
	triggerid		{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{integer}		DEFAULT '0' NOT NULL,
	acknowledged		{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (eventid)
) {create_table_opt};

CREATE INDEX events_1 ON events (triggerid,clock);
CREATE INDEX events_2 ON events (clock);

CREATE TABLE functions (
	functionid		{bigint}		DEFAULT '0' NOT NULL,
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	triggerid		{bigint}		DEFAULT '0' NOT NULL,
	lastvalue		{varchar}(255),
	function		{varchar}(12)	DEFAULT '' NOT NULL,
	parameter		{varchar}(255)	DEFAULT '0' NOT NULL,
	PRIMARY KEY (functionid)
) {create_table_opt};

CREATE INDEX functions_1 ON functions (triggerid);
CREATE INDEX functions_2 ON functions (itemid,function,parameter);

CREATE TABLE history (
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{double}(16,4)	DEFAULT '0.0000' NOT NULL
) {create_table_opt};

CREATE INDEX history_1 ON history (itemid, clock);

CREATE TABLE history_sync (
	id			{serial},
	nodeid			{integer}			DEFAULT '0' NOT NULL,
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{double}(16,4)		DEFAULT '0.0000' NOT NULL,
	PRIMARY KEY (id)
) {create_table_opt};

CREATE INDEX history_sync_1 ON history_sync (nodeid, id);

CREATE TABLE history_uint (
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{bigint}		DEFAULT '0' NOT NULL
) {create_table_opt};

CREATE INDEX history_uint_1 ON history_uint (itemid, clock);

CREATE TABLE history_str (
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{varchar}(255)	DEFAULT '' NOT NULL
) {create_table_opt};

CREATE INDEX history_str_1 ON history_str (itemid, clock);

CREATE TABLE hosts (
	hostid			{bigint}			DEFAULT '0' NOT NULL,
	host			{varchar}(64)		DEFAULT '' NOT NULL,
	useip			{integer}			DEFAULT '1' NOT NULL,
	ip			{varchar}(15)		DEFAULT '127.0.0.1' NOT NULL,
	port			{integer}			DEFAULT '0' NOT NULL,
	status			{integer}			DEFAULT '0' NOT NULL,
	disable_until		{integer}			DEFAULT '0' NOT NULL,
	error			{varchar}(128)		DEFAULT '' NOT NULL,
	available		{integer}			DEFAULT '0' NOT NULL,
	errors_from		{integer}			DEFAULT '0' NOT NULL,
	templateid		{bigint}			DEFAULT '0' NOT NULL,
	PRIMARY KEY	(hostid)
) {create_table_opt};

CREATE INDEX hosts_1 ON hosts (host);
CREATE INDEX hosts_2 ON hosts (status);

CREATE TABLE items (
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	type			{integer}		DEFAULT '0' NOT NULL,
	snmp_community		{varchar}(64)	DEFAULT '' NOT NULL,
	snmp_oid		{varchar}(255)	DEFAULT '' NOT NULL,
	snmp_port		{integer}		DEFAULT '161' NOT NULL,
	hostid			{bigint}	 	DEFAULT '0' NOT NULL,
	description		{varchar}(255)	DEFAULT '' NOT NULL,
	key_			{varchar}(64)	DEFAULT '' NOT NULL,
	delay			{integer} 	DEFAULT '0' NOT NULL,
	history			{integer} 	DEFAULT '90' NOT NULL,
	trends			{integer}		DEFAULT '365' NOT NULL,
	nextcheck		{integer}		DEFAULT '0' NOT NULL,
	lastvalue		{varchar}(255)	DEFAULT NULL,
	lastclock		{integer}		DEFAULT NULL,
	prevvalue		{varchar}(255)	DEFAULT NULL,
	status			{integer}		DEFAULT '0' NOT NULL,
	value_type		{integer}		DEFAULT '0' NOT NULL,
	trapper_hosts		{varchar}(255)	DEFAULT '' NOT NULL,
	units			{varchar}(10)	DEFAULT '' NOT NULL,
	multiplier		{integer}		DEFAULT '0' NOT NULL,
	delta			{integer}		DEFAULT '0' NOT NULL,
	prevorgvalue		{double}(16,4)	DEFAULT NULL,
	snmpv3_securityname	{varchar}(64)	DEFAULT '' NOT NULL,
	snmpv3_securitylevel	{integer}		DEFAULT '0' NOT NULL,
	snmpv3_authpassphrase	{varchar}(64)	DEFAULT '' NOT NULL,
	snmpv3_privpassphrase	{varchar}(64)	DEFAULT '' NOT NULL,

	formula			{varchar}(255)	DEFAULT '0' NOT NULL,
	error			{varchar}(128)	DEFAULT '' NOT NULL,

	lastlogsize		{integer}		DEFAULT '0' NOT NULL,
	logtimefmt		{varchar}(64)	DEFAULT '' NOT NULL,
	templateid		{integer}		DEFAULT '0' NOT NULL,
	valuemapid		{bigint}		DEFAULT '0' NOT NULL,
	delay_flex		{varchar}(255)	DEFAULT '' NOT NULL,

	PRIMARY KEY	(itemid)
) {create_table_opt};

CREATE INDEX items_1 ON items (hostid,key_);
CREATE INDEX items_2 ON items (nextcheck);
CREATE INDEX items_3 ON items (status);

CREATE TABLE media (
	mediaid			{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	mediatypeid		{bigint}		DEFAULT '0' NOT NULL,
	sendto			{varchar}(100)	DEFAULT '' NOT NULL,
	active			{integer}		DEFAULT '0' NOT NULL,
	severity		{integer}		DEFAULT '63' NOT NULL,
	period			{varchar}(100)	DEFAULT '1-7,00:00-23:59' NOT NULL,
	PRIMARY KEY	(mediaid)
) {create_table_opt};

CREATE INDEX media_1 ON media (userid);
CREATE INDEX media_2 ON media (mediatypeid);

CREATE TABLE media_type (
	mediatypeid		{bigint}		DEFAULT '0' NOT NULL,
	type			{integer}		DEFAULT '0' NOT NULL,
	description		{varchar}(100)	DEFAULT '' NOT NULL,
	smtp_server		{varchar}(255)	DEFAULT '' NOT NULL,
	smtp_helo		{varchar}(255)	DEFAULT '' NOT NULL,
	smtp_email		{varchar}(255)	DEFAULT '' NOT NULL,
	exec_path		{varchar}(255)	DEFAULT '' NOT NULL,
	gsm_modem		{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY	(mediatypeid)
) {create_table_opt};

CREATE TABLE triggers (
	triggerid		{bigint}		DEFAULT '0' NOT NULL,
	expression		{varchar}(255)	DEFAULT '' NOT NULL,
	description		{varchar}(255)	DEFAULT '' NOT NULL,
	url			{varchar}(255)	DEFAULT '' NOT NULL,
	status			{integer}		DEFAULT '0' NOT NULL,
	value			{integer}		DEFAULT '0' NOT NULL,
	priority		{integer}		DEFAULT '0' NOT NULL,
	lastchange		{integer}		DEFAULT '0' NOT NULL,
	dep_level		{integer}		DEFAULT '0' NOT NULL,
	comments		{blob},
	error			{varchar}(128)	DEFAULT '' NOT NULL,
	templateid		{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY	(triggerid)
) {create_table_opt};

CREATE INDEX triggers_1 ON triggers (status);
CREATE INDEX triggers_2 ON triggers (value);

CREATE TABLE trigger_depends (
	triggerdepid		{bigint}		DEFAULT '0' NOT NULL,
	triggerid_down		{bigint}		DEFAULT '0' NOT NULL,
	triggerid_up		{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY	(triggerdepid)
) {create_table_opt};

CREATE INDEX trigger_depends_1 ON trigger_depends (triggerid_down, triggerid_up);
CREATE INDEX trigger_depends_2 ON trigger_depends (triggerid_up);

CREATE TABLE users (
	userid			{bigint}		DEFAULT '0' NOT NULL,
	alias			{varchar}(100)	DEFAULT '' NOT NULL,
	name			{varchar}(100)	DEFAULT '' NOT NULL,
	surname			{varchar}(100)	DEFAULT '' NOT NULL,
	passwd			{char}(32)	DEFAULT '' NOT NULL,
	url			{varchar}(255)	DEFAULT '' NOT NULL,
	autologout		{integer}		DEFAULT '900' NOT NULL,
	lang			{varchar}(5)	DEFAULT 'en_gb' NOT NULL,
	refresh			{integer}		DEFAULT '30' NOT NULL,
	PRIMARY KEY (userid)
) {create_table_opt};

CREATE INDEX users_1 ON users (alias);

CREATE TABLE auditlog (
	auditid			{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	action			{integer}		DEFAULT '0' NOT NULL,
	resourcetype		{integer}		DEFAULT '0' NOT NULL,
	details			{varchar}(128)	DEFAULT '0' NOT NULL,
	PRIMARY KEY (auditid)
) {create_table_opt};

CREATE INDEX auditlog_1 ON auditlog (userid,clock);
CREATE INDEX auditlog_2 ON auditlog (clock);

CREATE TABLE sessions (
	sessionid		{varchar}(32)	NOT NULL DEFAULT '',
	userid			{bigint}		NOT NULL DEFAULT '0',
	lastaccess		{integer}		NOT NULL DEFAULT '0',
	PRIMARY KEY (sessionid)
) {create_table_opt};

CREATE TABLE rights (
	rightid			{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	name			{char}(255)	DEFAULT '' NOT NULL,
	permission		{char}(1)		DEFAULT '' NOT NULL,
	id			{bigint},
	PRIMARY KEY (rightid)
) {create_table_opt};

CREATE INDEX rights_1 ON rights (userid);

CREATE TABLE service_alarms (
	servicealarmid		{bigint}		DEFAULT '0' NOT NULL,
	serviceid		{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (servicealarmid)
) {create_table_opt};

CREATE INDEX service_alarms_1 ON service_alarms (serviceid,clock);
CREATE INDEX service_alarms_2 ON service_alarms (clock);

CREATE TABLE profiles (
	profileid		{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	idx			{varchar}(64)	DEFAULT '' NOT NULL,
	value			{varchar}(255)	DEFAULT '' NOT NULL,
	valuetype		{integer}		DEFAULT 0 NOT NULL,
	PRIMARY KEY (profileid)
) {create_table_opt};

CREATE INDEX profiles_1 ON profiles (userid,idx);

CREATE TABLE screens (
	screenid		{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(255)	DEFAULT 'Screen' NOT NULL,
	hsize			{integer}		DEFAULT '1' NOT NULL,
	vsize			{integer}		DEFAULT '1' NOT NULL,
	PRIMARY KEY  (screenid)
) {create_table_opt};

CREATE TABLE screens_items (
	screenitemid	{bigint}		DEFAULT '0' NOT NULL,
	screenid	{bigint}		DEFAULT '0' NOT NULL,
	resourcetype	{integer}		DEFAULT '0' NOT NULL,
	resourceid	{bigint}		DEFAULT '0' NOT NULL,
	width		{integer}		DEFAULT '320' NOT NULL,
	height		{integer}		DEFAULT '200' NOT NULL,
	x		{integer}		DEFAULT '0' NOT NULL,
	y		{integer}		DEFAULT '0' NOT NULL,
	colspan		{integer}		DEFAULT '0' NOT NULL,
	rowspan		{integer}		DEFAULT '0' NOT NULL,
	elements	{integer}		DEFAULT '25' NOT NULL,
	valign		{integer}		DEFAULT '0' NOT NULL,
	halign		{integer}		DEFAULT '0' NOT NULL,
	style		{integer}		DEFAULT '0' NOT NULL,
	url		{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY  (screenitemid)
) {create_table_opt};

CREATE TABLE usrgrp (
	usrgrpid		{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(64)	DEFAULT '' NOT NULL,
	PRIMARY KEY (usrgrpid)
) {create_table_opt};

CREATE INDEX usrgrp_1 ON usrgrp (name);

CREATE TABLE users_groups (
	id			{bigint}		DEFAULT '0' NOT NULL,
	usrgrpid		{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (id)
) {create_table_opt};

CREATE INDEX users_groups_1 ON users_groups (usrgrpid,userid);

CREATE TABLE trends (
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	num			{integer}		DEFAULT '0' NOT NULL,
	value_min		{double}(16,4)	DEFAULT '0.0000' NOT NULL,
	value_avg		{double}(16,4)	DEFAULT '0.0000' NOT NULL,
	value_max		{double}(16,4)	DEFAULT '0.0000' NOT NULL,
	PRIMARY KEY (itemid,clock)
) {create_table_opt};

CREATE TABLE images (
	imageid			{bigint}		DEFAULT '0' NOT NULL,
	imagetype		{integer}		DEFAULT '0' NOT NULL,
	name			{varchar}(64)	DEFAULT '0' NOT NULL,
	image			{image_type}	DEFAULT '' NOT NULL,
	PRIMARY KEY (imageid)
) {create_table_opt};

CREATE INDEX images_1 ON images (imagetype, name);

CREATE TABLE hosts_templates (
	hosttemplateid		{bigint}		DEFAULT '0' NOT NULL,
	hostid			{bigint}		DEFAULT '0' NOT NULL,
	templateid		{bigint}		DEFAULT '0' NOT NULL,
	items			{integer}		DEFAULT '0' NOT NULL,
	triggers		{integer}		DEFAULT '0' NOT NULL,
	graphs			{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (hosttemplateid)
) {create_table_opt};

CREATE INDEX hosts_templates_1 ON hosts_templates (hostid, templateid);

CREATE TABLE history_log (
	id			{bigint}		DEFAULT '0' NOT NULL,
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	timestamp		{integer}		DEFAULT '0' NOT NULL,
	source			{varchar}(64)	DEFAULT '' NOT NULL,
	severity		{integer}		DEFAULT '0' NOT NULL,
	value			{history_log_type}	DEFAULT '' NOT NULL,
	PRIMARY KEY (id)
) {create_table_opt};

CREATE INDEX history_log_1 ON history_log (itemid, clock);

CREATE TABLE history_text (
	id			{bigint}		DEFAULT '0' NOT NULL,
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	value			{history_text_type}	DEFAULT '' NOT NULL,
	PRIMARY KEY (id)
) {create_table_opt};

CREATE INDEX history_text_1 ON history_text (itemid, clock);

CREATE TABLE hosts_profiles (
	hostid			{bigint}		DEFAULT '0' NOT NULL,
	devicetype		{varchar}(64)	DEFAULT '' NOT NULL,
	name			{varchar}(64)	DEFAULT '' NOT NULL,
	os			{varchar}(64)	DEFAULT '' NOT NULL,
	serialno		{varchar}(64)	DEFAULT '' NOT NULL,
	tag			{varchar}(64)	DEFAULT '' NOT NULL,
	macaddress		{varchar}(64)	DEFAULT '' NOT NULL,
	hardware		{blob}		DEFAULT '' NOT NULL,
	software		{blob}		DEFAULT '' NOT NULL,
	contact			{blob}		DEFAULT '' NOT NULL,
	location		{blob}		DEFAULT '' NOT NULL,
	notes			{blob}		DEFAULT '' NOT NULL,
	PRIMARY KEY (hostid)
) {create_table_opt};

CREATE TABLE autoreg (
	id		{bigint}		DEFAULT '0' NOT NULL,
	priority	{integer}		DEFAULT '0' NOT NULL,
	pattern		{varchar}(255)	DEFAULT '' NOT NULL,
	hostid		{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (id)
) {create_table_opt};

CREATE TABLE valuemaps (
	valuemapid		{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(64)	DEFAULT '' NOT NULL,
	PRIMARY KEY (valuemapid)
) {create_table_opt};

CREATE INDEX valuemaps_1 ON valuemaps (name);

CREATE TABLE mappings (
	mappingid		{bigint}		DEFAULT '0' NOT NULL,
	valuemapid		{bigint}		DEFAULT '0' NOT NULL,
	value			{varchar}(64)	DEFAULT '' NOT NULL,
	newvalue		{varchar}(64)	DEFAULT '' NOT NULL,
	PRIMARY KEY (mappingid)
) {create_table_opt};

CREATE INDEX mappings_1 ON mappings (valuemapid);

CREATE TABLE housekeeper (
	housekeeperid		{bigint}		DEFAULT '0' NOT NULL,
	tablename		{varchar}(64)	DEFAULT '' NOT NULL,
	field			{varchar}(64)	DEFAULT '' NOT NULL,
	value			{integer}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (housekeeperid)
) {create_table_opt};

CREATE TABLE acknowledges (
	acknowledgeid		{bigint}		DEFAULT '0' NOT NULL,
	userid			{bigint}		DEFAULT '0' NOT NULL,
	eventid			{bigint}		DEFAULT '0' NOT NULL,
	clock			{integer}		DEFAULT '0' NOT NULL,
	message			{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY (acknowledgeid)
) {create_table_opt};

CREATE INDEX acknowledges_1 ON acknowledges (userid);
CREATE INDEX acknowledges_2 ON acknowledges (eventid);
CREATE INDEX acknowledges_3 ON acknowledges (clock);

CREATE TABLE applications (
	applicationid		{bigint}		DEFAULT '0' NOT NULL,
	hostid			{bigint}		DEFAULT '0' NOT NULL,
	name			{varchar}(255)	DEFAULT '' NOT NULL,
	templateid		{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY 	(applicationid)
) {create_table_opt};

CREATE INDEX applications_1 ON applications (templateid);
CREATE INDEX applications_2 ON applications (hostid,name);

CREATE TABLE items_applications (
	itemappid		{bigint}		DEFAULT '0' NOT NULL,
	applicationid		{bigint}		DEFAULT '0' NOT NULL,
	itemid			{bigint}		DEFAULT '0' NOT NULL,
	PRIMARY KEY (itemappid)
) {create_table_opt};

CREATE INDEX items_applications_1 ON items_applications (applicationid,itemid);

CREATE TABLE help_items (
	itemtype		{integer}          DEFAULT '0' NOT NULL,
	key_			{varchar}(64)	DEFAULT '' NOT NULL,
	description		{varchar}(255)	DEFAULT '' NOT NULL,
	PRIMARY KEY (itemtype, key_)
) {create_table_opt};