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 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
|
CREATE TABLE maintenances (
maintenanceid bigint NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
maintenance_type integer DEFAULT '0' NOT NULL,
description text DEFAULT '' NOT NULL,
active_since integer DEFAULT '0' NOT NULL,
active_till integer DEFAULT '0' NOT NULL,
PRIMARY KEY (maintenanceid)
);
CREATE INDEX maintenances_1 ON maintenances (active_since,active_till);
CREATE UNIQUE INDEX maintenances_2 ON maintenances (name);
CREATE TABLE hosts (
hostid bigint NOT NULL,
proxy_hostid bigint NULL,
host varchar(128) DEFAULT '' NOT NULL,
status integer DEFAULT '0' NOT NULL,
disable_until integer DEFAULT '0' NOT NULL,
error varchar(2048) DEFAULT '' NOT NULL,
available integer DEFAULT '0' NOT NULL,
errors_from integer DEFAULT '0' NOT NULL,
lastaccess integer DEFAULT '0' NOT NULL,
ipmi_authtype integer DEFAULT '0' NOT NULL,
ipmi_privilege integer DEFAULT '2' NOT NULL,
ipmi_username varchar(16) DEFAULT '' NOT NULL,
ipmi_password varchar(20) DEFAULT '' NOT NULL,
ipmi_disable_until integer DEFAULT '0' NOT NULL,
ipmi_available integer DEFAULT '0' NOT NULL,
snmp_disable_until integer DEFAULT '0' NOT NULL,
snmp_available integer DEFAULT '0' NOT NULL,
maintenanceid bigint NULL,
maintenance_status integer DEFAULT '0' NOT NULL,
maintenance_type integer DEFAULT '0' NOT NULL,
maintenance_from integer DEFAULT '0' NOT NULL,
ipmi_errors_from integer DEFAULT '0' NOT NULL,
snmp_errors_from integer DEFAULT '0' NOT NULL,
ipmi_error varchar(2048) DEFAULT '' NOT NULL,
snmp_error varchar(2048) DEFAULT '' NOT NULL,
jmx_disable_until integer DEFAULT '0' NOT NULL,
jmx_available integer DEFAULT '0' NOT NULL,
jmx_errors_from integer DEFAULT '0' NOT NULL,
jmx_error varchar(2048) DEFAULT '' NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
templateid bigint NULL,
description text DEFAULT '' NOT NULL,
tls_connect integer DEFAULT '1' NOT NULL,
tls_accept integer DEFAULT '1' NOT NULL,
tls_issuer varchar(1024) DEFAULT '' NOT NULL,
tls_subject varchar(1024) DEFAULT '' NOT NULL,
tls_psk_identity varchar(128) DEFAULT '' NOT NULL,
tls_psk varchar(512) DEFAULT '' NOT NULL,
PRIMARY KEY (hostid)
);
CREATE INDEX hosts_1 ON hosts (host);
CREATE INDEX hosts_2 ON hosts (status);
CREATE INDEX hosts_3 ON hosts (proxy_hostid);
CREATE INDEX hosts_4 ON hosts (name);
CREATE INDEX hosts_5 ON hosts (maintenanceid);
CREATE TABLE groups (
groupid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
internal integer DEFAULT '0' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
PRIMARY KEY (groupid)
);
CREATE INDEX groups_1 ON groups (name);
CREATE TABLE group_prototype (
group_prototypeid bigint NOT NULL,
hostid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
groupid bigint NULL,
templateid bigint NULL,
PRIMARY KEY (group_prototypeid)
);
CREATE INDEX group_prototype_1 ON group_prototype (hostid);
CREATE TABLE group_discovery (
groupid bigint NOT NULL,
parent_group_prototypeid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
lastcheck integer DEFAULT '0' NOT NULL,
ts_delete integer DEFAULT '0' NOT NULL,
PRIMARY KEY (groupid)
);
CREATE TABLE screens (
screenid bigint NOT NULL,
name varchar(255) NOT NULL,
hsize integer DEFAULT '1' NOT NULL,
vsize integer DEFAULT '1' NOT NULL,
templateid bigint NULL,
userid bigint NULL,
private integer DEFAULT '1' NOT NULL,
PRIMARY KEY (screenid)
);
CREATE INDEX screens_1 ON screens (templateid);
CREATE TABLE screens_items (
screenitemid bigint NOT NULL,
screenid bigint 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 '1' NOT NULL,
rowspan integer DEFAULT '1' 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,
dynamic integer DEFAULT '0' NOT NULL,
sort_triggers integer DEFAULT '0' NOT NULL,
application varchar(255) DEFAULT '' NOT NULL,
max_columns integer DEFAULT '3' NOT NULL,
PRIMARY KEY (screenitemid)
);
CREATE INDEX screens_items_1 ON screens_items (screenid);
CREATE TABLE screen_user (
screenuserid bigint NOT NULL,
screenid bigint NOT NULL,
userid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (screenuserid)
);
CREATE UNIQUE INDEX screen_user_1 ON screen_user (screenid,userid);
CREATE TABLE screen_usrgrp (
screenusrgrpid bigint NOT NULL,
screenid bigint NOT NULL,
usrgrpid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (screenusrgrpid)
);
CREATE UNIQUE INDEX screen_usrgrp_1 ON screen_usrgrp (screenid,usrgrpid);
CREATE TABLE slideshows (
slideshowid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
delay integer DEFAULT '0' NOT NULL,
userid bigint NOT NULL,
private integer DEFAULT '1' NOT NULL,
PRIMARY KEY (slideshowid)
);
CREATE UNIQUE INDEX slideshows_1 ON slideshows (name);
CREATE TABLE slideshow_user (
slideshowuserid bigint NOT NULL,
slideshowid bigint NOT NULL,
userid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (slideshowuserid)
);
CREATE UNIQUE INDEX slideshow_user_1 ON slideshow_user (slideshowid,userid);
CREATE TABLE slideshow_usrgrp (
slideshowusrgrpid bigint NOT NULL,
slideshowid bigint NOT NULL,
usrgrpid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (slideshowusrgrpid)
);
CREATE UNIQUE INDEX slideshow_usrgrp_1 ON slideshow_usrgrp (slideshowid,usrgrpid);
CREATE TABLE slides (
slideid bigint NOT NULL,
slideshowid bigint NOT NULL,
screenid bigint NOT NULL,
step integer DEFAULT '0' NOT NULL,
delay integer DEFAULT '0' NOT NULL,
PRIMARY KEY (slideid)
);
CREATE INDEX slides_1 ON slides (slideshowid);
CREATE INDEX slides_2 ON slides (screenid);
CREATE TABLE drules (
druleid bigint NOT NULL,
proxy_hostid bigint NULL,
name varchar(255) DEFAULT '' NOT NULL,
iprange varchar(2048) DEFAULT '' NOT NULL,
delay integer DEFAULT '3600' NOT NULL,
nextcheck integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
PRIMARY KEY (druleid)
);
CREATE INDEX drules_1 ON drules (proxy_hostid);
CREATE UNIQUE INDEX drules_2 ON drules (name);
CREATE TABLE dchecks (
dcheckid bigint NOT NULL,
druleid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
key_ varchar(255) DEFAULT '' NOT NULL,
snmp_community varchar(255) DEFAULT '' NOT NULL,
ports varchar(255) DEFAULT '0' NOT 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,
uniq integer DEFAULT '0' NOT NULL,
snmpv3_authprotocol integer DEFAULT '0' NOT NULL,
snmpv3_privprotocol integer DEFAULT '0' NOT NULL,
snmpv3_contextname varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (dcheckid)
);
CREATE INDEX dchecks_1 ON dchecks (druleid);
CREATE TABLE applications (
applicationid bigint NOT NULL,
hostid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
PRIMARY KEY (applicationid)
);
CREATE UNIQUE INDEX applications_2 ON applications (hostid,name);
CREATE TABLE httptest (
httptestid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
applicationid bigint NULL,
nextcheck integer DEFAULT '0' NOT NULL,
delay integer DEFAULT '60' NOT NULL,
status integer DEFAULT '0' NOT NULL,
variables text DEFAULT '' NOT NULL,
agent varchar(255) DEFAULT 'Zabbix' NOT NULL,
authentication integer DEFAULT '0' NOT NULL,
http_user varchar(64) DEFAULT '' NOT NULL,
http_password varchar(64) DEFAULT '' NOT NULL,
hostid bigint NOT NULL,
templateid bigint NULL,
http_proxy varchar(255) DEFAULT '' NOT NULL,
retries integer DEFAULT '1' NOT NULL,
ssl_cert_file varchar(255) DEFAULT '' NOT NULL,
ssl_key_file varchar(255) DEFAULT '' NOT NULL,
ssl_key_password varchar(64) DEFAULT '' NOT NULL,
verify_peer integer DEFAULT '0' NOT NULL,
verify_host integer DEFAULT '0' NOT NULL,
headers text DEFAULT '' NOT NULL,
PRIMARY KEY (httptestid)
);
CREATE INDEX httptest_1 ON httptest (applicationid);
CREATE UNIQUE INDEX httptest_2 ON httptest (hostid,name);
CREATE INDEX httptest_3 ON httptest (status);
CREATE INDEX httptest_4 ON httptest (templateid);
CREATE TABLE httpstep (
httpstepid bigint NOT NULL,
httptestid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
no integer DEFAULT '0' NOT NULL,
url varchar(2048) DEFAULT '' NOT NULL,
timeout integer DEFAULT '15' NOT NULL,
posts text DEFAULT '' NOT NULL,
required varchar(255) DEFAULT '' NOT NULL,
status_codes varchar(255) DEFAULT '' NOT NULL,
variables text DEFAULT '' NOT NULL,
follow_redirects integer DEFAULT '1' NOT NULL,
retrieve_mode integer DEFAULT '0' NOT NULL,
headers text DEFAULT '' NOT NULL,
PRIMARY KEY (httpstepid)
);
CREATE INDEX httpstep_1 ON httpstep (httptestid);
CREATE TABLE interface (
interfaceid bigint NOT NULL,
hostid bigint NOT NULL,
main integer DEFAULT '0' NOT NULL,
type integer DEFAULT '0' NOT NULL,
useip integer DEFAULT '1' NOT NULL,
ip varchar(64) DEFAULT '127.0.0.1' NOT NULL,
dns varchar(64) DEFAULT '' NOT NULL,
port varchar(64) DEFAULT '10050' NOT NULL,
bulk integer DEFAULT '1' NOT NULL,
PRIMARY KEY (interfaceid)
);
CREATE INDEX interface_1 ON interface (hostid,type);
CREATE INDEX interface_2 ON interface (ip,dns);
CREATE TABLE valuemaps (
valuemapid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (valuemapid)
);
CREATE UNIQUE INDEX valuemaps_1 ON valuemaps (name);
CREATE TABLE items (
itemid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
snmp_community varchar(64) DEFAULT '' NOT NULL,
snmp_oid varchar(255) DEFAULT '' NOT NULL,
hostid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
key_ varchar(255) DEFAULT '' NOT NULL,
delay integer DEFAULT '0' NOT NULL,
history integer DEFAULT '90' NOT NULL,
trends integer DEFAULT '365' NOT NULL,
status integer DEFAULT '0' NOT NULL,
value_type integer DEFAULT '0' NOT NULL,
trapper_hosts varchar(255) DEFAULT '' NOT NULL,
units varchar(255) DEFAULT '' NOT NULL,
multiplier integer DEFAULT '0' NOT NULL,
delta integer DEFAULT '0' NOT 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 '' NOT NULL,
error varchar(2048) DEFAULT '' NOT NULL,
lastlogsize numeric(20) DEFAULT '0' NOT NULL,
logtimefmt varchar(64) DEFAULT '' NOT NULL,
templateid bigint NULL,
valuemapid bigint NULL,
delay_flex varchar(255) DEFAULT '' NOT NULL,
params text DEFAULT '' NOT NULL,
ipmi_sensor varchar(128) DEFAULT '' NOT NULL,
data_type integer DEFAULT '0' NOT NULL,
authtype integer DEFAULT '0' NOT NULL,
username varchar(64) DEFAULT '' NOT NULL,
password varchar(64) DEFAULT '' NOT NULL,
publickey varchar(64) DEFAULT '' NOT NULL,
privatekey varchar(64) DEFAULT '' NOT NULL,
mtime integer DEFAULT '0' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
interfaceid bigint NULL,
port varchar(64) DEFAULT '' NOT NULL,
description text DEFAULT '' NOT NULL,
inventory_link integer DEFAULT '0' NOT NULL,
lifetime varchar(64) DEFAULT '30' NOT NULL,
snmpv3_authprotocol integer DEFAULT '0' NOT NULL,
snmpv3_privprotocol integer DEFAULT '0' NOT NULL,
state integer DEFAULT '0' NOT NULL,
snmpv3_contextname varchar(255) DEFAULT '' NOT NULL,
evaltype integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid)
);
CREATE UNIQUE INDEX items_1 ON items (hostid,key_);
CREATE INDEX items_3 ON items (status);
CREATE INDEX items_4 ON items (templateid);
CREATE INDEX items_5 ON items (valuemapid);
CREATE INDEX items_6 ON items (interfaceid);
CREATE TABLE httpstepitem (
httpstepitemid bigint NOT NULL,
httpstepid bigint NOT NULL,
itemid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httpstepitemid)
);
CREATE UNIQUE INDEX httpstepitem_1 ON httpstepitem (httpstepid,itemid);
CREATE INDEX httpstepitem_2 ON httpstepitem (itemid);
CREATE TABLE httptestitem (
httptestitemid bigint NOT NULL,
httptestid bigint NOT NULL,
itemid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httptestitemid)
);
CREATE UNIQUE INDEX httptestitem_1 ON httptestitem (httptestid,itemid);
CREATE INDEX httptestitem_2 ON httptestitem (itemid);
CREATE TABLE media_type (
mediatypeid bigint 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,
username varchar(255) DEFAULT '' NOT NULL,
passwd varchar(255) DEFAULT '' NOT NULL,
status integer DEFAULT '0' NOT NULL,
smtp_port integer DEFAULT '25' NOT NULL,
smtp_security integer DEFAULT '0' NOT NULL,
smtp_verify_peer integer DEFAULT '0' NOT NULL,
smtp_verify_host integer DEFAULT '0' NOT NULL,
smtp_authentication integer DEFAULT '0' NOT NULL,
exec_params varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (mediatypeid)
);
CREATE UNIQUE INDEX media_type_1 ON media_type (description);
CREATE TABLE users (
userid bigint 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,
autologin integer DEFAULT '0' NOT NULL,
autologout integer DEFAULT '900' NOT NULL,
lang varchar(5) DEFAULT 'en_GB' NOT NULL,
refresh integer DEFAULT '30' NOT NULL,
type integer DEFAULT '1' NOT NULL,
theme varchar(128) DEFAULT 'default' NOT NULL,
attempt_failed integer DEFAULT 0 NOT NULL,
attempt_ip varchar(39) DEFAULT '' NOT NULL,
attempt_clock integer DEFAULT 0 NOT NULL,
rows_per_page integer DEFAULT 50 NOT NULL,
PRIMARY KEY (userid)
);
CREATE UNIQUE INDEX users_1 ON users (alias);
CREATE TABLE usrgrp (
usrgrpid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
gui_access integer DEFAULT '0' NOT NULL,
users_status integer DEFAULT '0' NOT NULL,
debug_mode integer DEFAULT '0' NOT NULL,
PRIMARY KEY (usrgrpid)
);
CREATE UNIQUE INDEX usrgrp_1 ON usrgrp (name);
CREATE TABLE users_groups (
id bigint NOT NULL,
usrgrpid bigint NOT NULL,
userid bigint NOT NULL,
PRIMARY KEY (id)
);
CREATE UNIQUE INDEX users_groups_1 ON users_groups (usrgrpid,userid);
CREATE INDEX users_groups_2 ON users_groups (userid);
CREATE TABLE scripts (
scriptid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
command varchar(255) DEFAULT '' NOT NULL,
host_access integer DEFAULT '2' NOT NULL,
usrgrpid bigint NULL,
groupid bigint NULL,
description text DEFAULT '' NOT NULL,
confirmation varchar(255) DEFAULT '' NOT NULL,
type integer DEFAULT '0' NOT NULL,
execute_on integer DEFAULT '1' NOT NULL,
PRIMARY KEY (scriptid)
);
CREATE INDEX scripts_1 ON scripts (usrgrpid);
CREATE INDEX scripts_2 ON scripts (groupid);
CREATE UNIQUE INDEX scripts_3 ON scripts (name);
CREATE TABLE actions (
actionid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
eventsource integer DEFAULT '0' NOT NULL,
evaltype integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
esc_period integer DEFAULT '0' NOT NULL,
def_shortdata varchar(255) DEFAULT '' NOT NULL,
def_longdata text DEFAULT '' NOT NULL,
recovery_msg integer DEFAULT '0' NOT NULL,
r_shortdata varchar(255) DEFAULT '' NOT NULL,
r_longdata text DEFAULT '' NOT NULL,
formula varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (actionid)
);
CREATE INDEX actions_1 ON actions (eventsource,status);
CREATE UNIQUE INDEX actions_2 ON actions (name);
CREATE TABLE operations (
operationid bigint NOT NULL,
actionid bigint NOT NULL,
operationtype integer DEFAULT '0' NOT NULL,
esc_period integer DEFAULT '0' NOT NULL,
esc_step_from integer DEFAULT '1' NOT NULL,
esc_step_to integer DEFAULT '1' NOT NULL,
evaltype integer DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX operations_1 ON operations (actionid);
CREATE TABLE opmessage (
operationid bigint NOT NULL,
default_msg integer DEFAULT '0' NOT NULL,
subject varchar(255) DEFAULT '' NOT NULL,
message text DEFAULT '' NOT NULL,
mediatypeid bigint NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX opmessage_1 ON opmessage (mediatypeid);
CREATE TABLE opmessage_grp (
opmessage_grpid bigint NOT NULL,
operationid bigint NOT NULL,
usrgrpid bigint NOT NULL,
PRIMARY KEY (opmessage_grpid)
);
CREATE UNIQUE INDEX opmessage_grp_1 ON opmessage_grp (operationid,usrgrpid);
CREATE INDEX opmessage_grp_2 ON opmessage_grp (usrgrpid);
CREATE TABLE opmessage_usr (
opmessage_usrid bigint NOT NULL,
operationid bigint NOT NULL,
userid bigint NOT NULL,
PRIMARY KEY (opmessage_usrid)
);
CREATE UNIQUE INDEX opmessage_usr_1 ON opmessage_usr (operationid,userid);
CREATE INDEX opmessage_usr_2 ON opmessage_usr (userid);
CREATE TABLE opcommand (
operationid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
scriptid bigint NULL,
execute_on integer DEFAULT '0' NOT NULL,
port varchar(64) DEFAULT '' NOT NULL,
authtype integer DEFAULT '0' NOT NULL,
username varchar(64) DEFAULT '' NOT NULL,
password varchar(64) DEFAULT '' NOT NULL,
publickey varchar(64) DEFAULT '' NOT NULL,
privatekey varchar(64) DEFAULT '' NOT NULL,
command text DEFAULT '' NOT NULL,
PRIMARY KEY (operationid)
);
CREATE INDEX opcommand_1 ON opcommand (scriptid);
CREATE TABLE opcommand_hst (
opcommand_hstid bigint NOT NULL,
operationid bigint NOT NULL,
hostid bigint NULL,
PRIMARY KEY (opcommand_hstid)
);
CREATE INDEX opcommand_hst_1 ON opcommand_hst (operationid);
CREATE INDEX opcommand_hst_2 ON opcommand_hst (hostid);
CREATE TABLE opcommand_grp (
opcommand_grpid bigint NOT NULL,
operationid bigint NOT NULL,
groupid bigint NOT NULL,
PRIMARY KEY (opcommand_grpid)
);
CREATE INDEX opcommand_grp_1 ON opcommand_grp (operationid);
CREATE INDEX opcommand_grp_2 ON opcommand_grp (groupid);
CREATE TABLE opgroup (
opgroupid bigint NOT NULL,
operationid bigint NOT NULL,
groupid bigint NOT NULL,
PRIMARY KEY (opgroupid)
);
CREATE UNIQUE INDEX opgroup_1 ON opgroup (operationid,groupid);
CREATE INDEX opgroup_2 ON opgroup (groupid);
CREATE TABLE optemplate (
optemplateid bigint NOT NULL,
operationid bigint NOT NULL,
templateid bigint NOT NULL,
PRIMARY KEY (optemplateid)
);
CREATE UNIQUE INDEX optemplate_1 ON optemplate (operationid,templateid);
CREATE INDEX optemplate_2 ON optemplate (templateid);
CREATE TABLE opconditions (
opconditionid bigint NOT NULL,
operationid bigint NOT NULL,
conditiontype integer DEFAULT '0' NOT NULL,
operator integer DEFAULT '0' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (opconditionid)
);
CREATE INDEX opconditions_1 ON opconditions (operationid);
CREATE TABLE conditions (
conditionid bigint NOT NULL,
actionid bigint NOT NULL,
conditiontype integer DEFAULT '0' NOT NULL,
operator integer DEFAULT '0' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (conditionid)
);
CREATE INDEX conditions_1 ON conditions (actionid);
CREATE TABLE config (
configid bigint NOT NULL,
refresh_unsupported integer DEFAULT '0' NOT NULL,
work_period varchar(100) DEFAULT '1-5,00:00-24:00' NOT NULL,
alert_usrgrpid bigint NULL,
event_ack_enable integer DEFAULT '1' NOT NULL,
event_expire integer DEFAULT '7' NOT NULL,
event_show_max integer DEFAULT '100' NOT NULL,
default_theme varchar(128) DEFAULT 'blue-theme' NOT NULL,
authentication_type integer DEFAULT '0' NOT NULL,
ldap_host varchar(255) DEFAULT '' NOT NULL,
ldap_port integer DEFAULT 389 NOT NULL,
ldap_base_dn varchar(255) DEFAULT '' NOT NULL,
ldap_bind_dn varchar(255) DEFAULT '' NOT NULL,
ldap_bind_password varchar(128) DEFAULT '' NOT NULL,
ldap_search_attribute varchar(128) DEFAULT '' NOT NULL,
dropdown_first_entry integer DEFAULT '1' NOT NULL,
dropdown_first_remember integer DEFAULT '1' NOT NULL,
discovery_groupid bigint NOT NULL,
max_in_table integer DEFAULT '50' NOT NULL,
search_limit integer DEFAULT '1000' NOT NULL,
severity_color_0 varchar(6) DEFAULT '97AAB3' NOT NULL,
severity_color_1 varchar(6) DEFAULT '7499FF' NOT NULL,
severity_color_2 varchar(6) DEFAULT 'FFC859' NOT NULL,
severity_color_3 varchar(6) DEFAULT 'FFA059' NOT NULL,
severity_color_4 varchar(6) DEFAULT 'E97659' NOT NULL,
severity_color_5 varchar(6) DEFAULT 'E45959' NOT NULL,
severity_name_0 varchar(32) DEFAULT 'Not classified' NOT NULL,
severity_name_1 varchar(32) DEFAULT 'Information' NOT NULL,
severity_name_2 varchar(32) DEFAULT 'Warning' NOT NULL,
severity_name_3 varchar(32) DEFAULT 'Average' NOT NULL,
severity_name_4 varchar(32) DEFAULT 'High' NOT NULL,
severity_name_5 varchar(32) DEFAULT 'Disaster' NOT NULL,
ok_period integer DEFAULT '1800' NOT NULL,
blink_period integer DEFAULT '1800' NOT NULL,
problem_unack_color varchar(6) DEFAULT 'DC0000' NOT NULL,
problem_ack_color varchar(6) DEFAULT 'DC0000' NOT NULL,
ok_unack_color varchar(6) DEFAULT '00AA00' NOT NULL,
ok_ack_color varchar(6) DEFAULT '00AA00' NOT NULL,
problem_unack_style integer DEFAULT '1' NOT NULL,
problem_ack_style integer DEFAULT '1' NOT NULL,
ok_unack_style integer DEFAULT '1' NOT NULL,
ok_ack_style integer DEFAULT '1' NOT NULL,
snmptrap_logging integer DEFAULT '1' NOT NULL,
server_check_interval integer DEFAULT '10' NOT NULL,
hk_events_mode integer DEFAULT '1' NOT NULL,
hk_events_trigger integer DEFAULT '365' NOT NULL,
hk_events_internal integer DEFAULT '365' NOT NULL,
hk_events_discovery integer DEFAULT '365' NOT NULL,
hk_events_autoreg integer DEFAULT '365' NOT NULL,
hk_services_mode integer DEFAULT '1' NOT NULL,
hk_services integer DEFAULT '365' NOT NULL,
hk_audit_mode integer DEFAULT '1' NOT NULL,
hk_audit integer DEFAULT '365' NOT NULL,
hk_sessions_mode integer DEFAULT '1' NOT NULL,
hk_sessions integer DEFAULT '365' NOT NULL,
hk_history_mode integer DEFAULT '1' NOT NULL,
hk_history_global integer DEFAULT '0' NOT NULL,
hk_history integer DEFAULT '90' NOT NULL,
hk_trends_mode integer DEFAULT '1' NOT NULL,
hk_trends_global integer DEFAULT '0' NOT NULL,
hk_trends integer DEFAULT '365' NOT NULL,
default_inventory_mode integer DEFAULT '-1' NOT NULL,
PRIMARY KEY (configid)
);
CREATE INDEX config_1 ON config (alert_usrgrpid);
CREATE INDEX config_2 ON config (discovery_groupid);
CREATE TABLE triggers (
triggerid bigint NOT NULL,
expression varchar(2048) 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,
comments text DEFAULT '' NOT NULL,
error varchar(128) DEFAULT '' NOT NULL,
templateid bigint NULL,
type integer DEFAULT '0' NOT NULL,
state integer DEFAULT '0' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
PRIMARY KEY (triggerid)
);
CREATE INDEX triggers_1 ON triggers (status);
CREATE INDEX triggers_2 ON triggers (value,lastchange);
CREATE INDEX triggers_3 ON triggers (templateid);
CREATE TABLE trigger_depends (
triggerdepid bigint NOT NULL,
triggerid_down bigint NOT NULL,
triggerid_up bigint NOT NULL,
PRIMARY KEY (triggerdepid)
);
CREATE UNIQUE INDEX trigger_depends_1 ON trigger_depends (triggerid_down,triggerid_up);
CREATE INDEX trigger_depends_2 ON trigger_depends (triggerid_up);
CREATE TABLE functions (
functionid bigint NOT NULL,
itemid bigint NOT NULL,
triggerid bigint NOT NULL,
function varchar(12) DEFAULT '' NOT NULL,
parameter varchar(255) DEFAULT '0' NOT NULL,
PRIMARY KEY (functionid)
);
CREATE INDEX functions_1 ON functions (triggerid);
CREATE INDEX functions_2 ON functions (itemid,function,parameter);
CREATE TABLE graphs (
graphid bigint NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
width integer DEFAULT '900' NOT NULL,
height integer DEFAULT '200' NOT NULL,
yaxismin numeric(16,4) DEFAULT '0' NOT NULL,
yaxismax numeric(16,4) DEFAULT '100' NOT NULL,
templateid bigint NULL,
show_work_period integer DEFAULT '1' NOT NULL,
show_triggers integer DEFAULT '1' NOT NULL,
graphtype integer DEFAULT '0' NOT NULL,
show_legend integer DEFAULT '1' NOT NULL,
show_3d integer DEFAULT '0' NOT NULL,
percent_left numeric(16,4) DEFAULT '0' NOT NULL,
percent_right numeric(16,4) DEFAULT '0' NOT NULL,
ymin_type integer DEFAULT '0' NOT NULL,
ymax_type integer DEFAULT '0' NOT NULL,
ymin_itemid bigint NULL,
ymax_itemid bigint NULL,
flags integer DEFAULT '0' NOT NULL,
PRIMARY KEY (graphid)
);
CREATE INDEX graphs_1 ON graphs (name);
CREATE INDEX graphs_2 ON graphs (templateid);
CREATE INDEX graphs_3 ON graphs (ymin_itemid);
CREATE INDEX graphs_4 ON graphs (ymax_itemid);
CREATE TABLE graphs_items (
gitemid bigint NOT NULL,
graphid bigint NOT NULL,
itemid bigint NOT NULL,
drawtype integer DEFAULT '0' NOT NULL,
sortorder integer DEFAULT '0' NOT NULL,
color varchar(6) DEFAULT '009600' NOT NULL,
yaxisside integer DEFAULT '0' NOT NULL,
calc_fnc integer DEFAULT '2' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (gitemid)
);
CREATE INDEX graphs_items_1 ON graphs_items (itemid);
CREATE INDEX graphs_items_2 ON graphs_items (graphid);
CREATE TABLE graph_theme (
graphthemeid bigint NOT NULL,
theme varchar(64) DEFAULT '' NOT NULL,
backgroundcolor varchar(6) DEFAULT '' NOT NULL,
graphcolor varchar(6) DEFAULT '' NOT NULL,
gridcolor varchar(6) DEFAULT '' NOT NULL,
maingridcolor varchar(6) DEFAULT '' NOT NULL,
gridbordercolor varchar(6) DEFAULT '' NOT NULL,
textcolor varchar(6) DEFAULT '' NOT NULL,
highlightcolor varchar(6) DEFAULT '' NOT NULL,
leftpercentilecolor varchar(6) DEFAULT '' NOT NULL,
rightpercentilecolor varchar(6) DEFAULT '' NOT NULL,
nonworktimecolor varchar(6) DEFAULT '' NOT NULL,
PRIMARY KEY (graphthemeid)
);
CREATE UNIQUE INDEX graph_theme_1 ON graph_theme (theme);
CREATE TABLE globalmacro (
globalmacroid bigint NOT NULL,
macro varchar(255) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (globalmacroid)
);
CREATE UNIQUE INDEX globalmacro_1 ON globalmacro (macro);
CREATE TABLE hostmacro (
hostmacroid bigint NOT NULL,
hostid bigint NOT NULL,
macro varchar(255) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (hostmacroid)
);
CREATE UNIQUE INDEX hostmacro_1 ON hostmacro (hostid,macro);
CREATE TABLE hosts_groups (
hostgroupid bigint NOT NULL,
hostid bigint NOT NULL,
groupid bigint NOT NULL,
PRIMARY KEY (hostgroupid)
);
CREATE UNIQUE INDEX hosts_groups_1 ON hosts_groups (hostid,groupid);
CREATE INDEX hosts_groups_2 ON hosts_groups (groupid);
CREATE TABLE hosts_templates (
hosttemplateid bigint NOT NULL,
hostid bigint NOT NULL,
templateid bigint NOT NULL,
PRIMARY KEY (hosttemplateid)
);
CREATE UNIQUE INDEX hosts_templates_1 ON hosts_templates (hostid,templateid);
CREATE INDEX hosts_templates_2 ON hosts_templates (templateid);
CREATE TABLE items_applications (
itemappid bigint NOT NULL,
applicationid bigint NOT NULL,
itemid bigint NOT NULL,
PRIMARY KEY (itemappid)
);
CREATE UNIQUE INDEX items_applications_1 ON items_applications (applicationid,itemid);
CREATE INDEX items_applications_2 ON items_applications (itemid);
CREATE TABLE mappings (
mappingid bigint NOT NULL,
valuemapid bigint NOT NULL,
value varchar(64) DEFAULT '' NOT NULL,
newvalue varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (mappingid)
);
CREATE INDEX mappings_1 ON mappings (valuemapid);
CREATE TABLE media (
mediaid bigint NOT NULL,
userid bigint NOT NULL,
mediatypeid bigint 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-24:00' NOT NULL,
PRIMARY KEY (mediaid)
);
CREATE INDEX media_1 ON media (userid);
CREATE INDEX media_2 ON media (mediatypeid);
CREATE TABLE rights (
rightid bigint NOT NULL,
groupid bigint NOT NULL,
permission integer DEFAULT '0' NOT NULL,
id bigint NOT NULL,
PRIMARY KEY (rightid)
);
CREATE INDEX rights_1 ON rights (groupid);
CREATE INDEX rights_2 ON rights (id);
CREATE TABLE services (
serviceid bigint NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
status integer DEFAULT '0' NOT NULL,
algorithm integer DEFAULT '0' NOT NULL,
triggerid bigint NULL,
showsla integer DEFAULT '0' NOT NULL,
goodsla numeric(16,4) DEFAULT '99.9' NOT NULL,
sortorder integer DEFAULT '0' NOT NULL,
PRIMARY KEY (serviceid)
);
CREATE INDEX services_1 ON services (triggerid);
CREATE TABLE services_links (
linkid bigint NOT NULL,
serviceupid bigint NOT NULL,
servicedownid bigint NOT NULL,
soft integer DEFAULT '0' NOT NULL,
PRIMARY KEY (linkid)
);
CREATE INDEX services_links_1 ON services_links (servicedownid);
CREATE UNIQUE INDEX services_links_2 ON services_links (serviceupid,servicedownid);
CREATE TABLE services_times (
timeid bigint NOT NULL,
serviceid bigint 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 INDEX services_times_1 ON services_times (serviceid,type,ts_from,ts_to);
CREATE TABLE icon_map (
iconmapid bigint NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
default_iconid bigint NOT NULL,
PRIMARY KEY (iconmapid)
);
CREATE UNIQUE INDEX icon_map_1 ON icon_map (name);
CREATE INDEX icon_map_2 ON icon_map (default_iconid);
CREATE TABLE icon_mapping (
iconmappingid bigint NOT NULL,
iconmapid bigint NOT NULL,
iconid bigint NOT NULL,
inventory_link integer DEFAULT '0' NOT NULL,
expression varchar(64) DEFAULT '' NOT NULL,
sortorder integer DEFAULT '0' NOT NULL,
PRIMARY KEY (iconmappingid)
);
CREATE INDEX icon_mapping_1 ON icon_mapping (iconmapid);
CREATE INDEX icon_mapping_2 ON icon_mapping (iconid);
CREATE TABLE sysmaps (
sysmapid bigint NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
width integer DEFAULT '600' NOT NULL,
height integer DEFAULT '400' NOT NULL,
backgroundid bigint NULL,
label_type integer DEFAULT '2' NOT NULL,
label_location integer DEFAULT '0' NOT NULL,
highlight integer DEFAULT '1' NOT NULL,
expandproblem integer DEFAULT '1' NOT NULL,
markelements integer DEFAULT '0' NOT NULL,
show_unack integer DEFAULT '0' NOT NULL,
grid_size integer DEFAULT '50' NOT NULL,
grid_show integer DEFAULT '1' NOT NULL,
grid_align integer DEFAULT '1' NOT NULL,
label_format integer DEFAULT '0' NOT NULL,
label_type_host integer DEFAULT '2' NOT NULL,
label_type_hostgroup integer DEFAULT '2' NOT NULL,
label_type_trigger integer DEFAULT '2' NOT NULL,
label_type_map integer DEFAULT '2' NOT NULL,
label_type_image integer DEFAULT '2' NOT NULL,
label_string_host varchar(255) DEFAULT '' NOT NULL,
label_string_hostgroup varchar(255) DEFAULT '' NOT NULL,
label_string_trigger varchar(255) DEFAULT '' NOT NULL,
label_string_map varchar(255) DEFAULT '' NOT NULL,
label_string_image varchar(255) DEFAULT '' NOT NULL,
iconmapid bigint NULL,
expand_macros integer DEFAULT '0' NOT NULL,
severity_min integer DEFAULT '0' NOT NULL,
userid bigint NOT NULL,
private integer DEFAULT '1' NOT NULL,
PRIMARY KEY (sysmapid)
);
CREATE UNIQUE INDEX sysmaps_1 ON sysmaps (name);
CREATE INDEX sysmaps_2 ON sysmaps (backgroundid);
CREATE INDEX sysmaps_3 ON sysmaps (iconmapid);
CREATE TABLE sysmaps_elements (
selementid bigint NOT NULL,
sysmapid bigint NOT NULL,
elementid bigint DEFAULT '0' NOT NULL,
elementtype integer DEFAULT '0' NOT NULL,
iconid_off bigint NULL,
iconid_on bigint NULL,
label varchar(2048) DEFAULT '' NOT NULL,
label_location integer DEFAULT '-1' NOT NULL,
x integer DEFAULT '0' NOT NULL,
y integer DEFAULT '0' NOT NULL,
iconid_disabled bigint NULL,
iconid_maintenance bigint NULL,
elementsubtype integer DEFAULT '0' NOT NULL,
areatype integer DEFAULT '0' NOT NULL,
width integer DEFAULT '200' NOT NULL,
height integer DEFAULT '200' NOT NULL,
viewtype integer DEFAULT '0' NOT NULL,
use_iconmap integer DEFAULT '1' NOT NULL,
application varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (selementid)
);
CREATE INDEX sysmaps_elements_1 ON sysmaps_elements (sysmapid);
CREATE INDEX sysmaps_elements_2 ON sysmaps_elements (iconid_off);
CREATE INDEX sysmaps_elements_3 ON sysmaps_elements (iconid_on);
CREATE INDEX sysmaps_elements_4 ON sysmaps_elements (iconid_disabled);
CREATE INDEX sysmaps_elements_5 ON sysmaps_elements (iconid_maintenance);
CREATE TABLE sysmaps_links (
linkid bigint NOT NULL,
sysmapid bigint NOT NULL,
selementid1 bigint NOT NULL,
selementid2 bigint NOT NULL,
drawtype integer DEFAULT '0' NOT NULL,
color varchar(6) DEFAULT '000000' NOT NULL,
label varchar(2048) DEFAULT '' NOT NULL,
PRIMARY KEY (linkid)
);
CREATE INDEX sysmaps_links_1 ON sysmaps_links (sysmapid);
CREATE INDEX sysmaps_links_2 ON sysmaps_links (selementid1);
CREATE INDEX sysmaps_links_3 ON sysmaps_links (selementid2);
CREATE TABLE sysmaps_link_triggers (
linktriggerid bigint NOT NULL,
linkid bigint NOT NULL,
triggerid bigint NOT NULL,
drawtype integer DEFAULT '0' NOT NULL,
color varchar(6) DEFAULT '000000' NOT NULL,
PRIMARY KEY (linktriggerid)
);
CREATE UNIQUE INDEX sysmaps_link_triggers_1 ON sysmaps_link_triggers (linkid,triggerid);
CREATE INDEX sysmaps_link_triggers_2 ON sysmaps_link_triggers (triggerid);
CREATE TABLE sysmap_element_url (
sysmapelementurlid bigint NOT NULL,
selementid bigint NOT NULL,
name varchar(255) NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (sysmapelementurlid)
);
CREATE UNIQUE INDEX sysmap_element_url_1 ON sysmap_element_url (selementid,name);
CREATE TABLE sysmap_url (
sysmapurlid bigint NOT NULL,
sysmapid bigint NOT NULL,
name varchar(255) NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
elementtype integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sysmapurlid)
);
CREATE UNIQUE INDEX sysmap_url_1 ON sysmap_url (sysmapid,name);
CREATE TABLE sysmap_user (
sysmapuserid bigint NOT NULL,
sysmapid bigint NOT NULL,
userid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapuserid)
);
CREATE UNIQUE INDEX sysmap_user_1 ON sysmap_user (sysmapid,userid);
CREATE TABLE sysmap_usrgrp (
sysmapusrgrpid bigint NOT NULL,
sysmapid bigint NOT NULL,
usrgrpid bigint NOT NULL,
permission integer DEFAULT '2' NOT NULL,
PRIMARY KEY (sysmapusrgrpid)
);
CREATE UNIQUE INDEX sysmap_usrgrp_1 ON sysmap_usrgrp (sysmapid,usrgrpid);
CREATE TABLE maintenances_hosts (
maintenance_hostid bigint NOT NULL,
maintenanceid bigint NOT NULL,
hostid bigint NOT NULL,
PRIMARY KEY (maintenance_hostid)
);
CREATE UNIQUE INDEX maintenances_hosts_1 ON maintenances_hosts (maintenanceid,hostid);
CREATE INDEX maintenances_hosts_2 ON maintenances_hosts (hostid);
CREATE TABLE maintenances_groups (
maintenance_groupid bigint NOT NULL,
maintenanceid bigint NOT NULL,
groupid bigint NOT NULL,
PRIMARY KEY (maintenance_groupid)
);
CREATE UNIQUE INDEX maintenances_groups_1 ON maintenances_groups (maintenanceid,groupid);
CREATE INDEX maintenances_groups_2 ON maintenances_groups (groupid);
CREATE TABLE timeperiods (
timeperiodid bigint NOT NULL,
timeperiod_type integer DEFAULT '0' NOT NULL,
every integer DEFAULT '1' NOT NULL,
month integer DEFAULT '0' NOT NULL,
dayofweek integer DEFAULT '0' NOT NULL,
day integer DEFAULT '0' NOT NULL,
start_time integer DEFAULT '0' NOT NULL,
period integer DEFAULT '0' NOT NULL,
start_date integer DEFAULT '0' NOT NULL,
PRIMARY KEY (timeperiodid)
);
CREATE TABLE maintenances_windows (
maintenance_timeperiodid bigint NOT NULL,
maintenanceid bigint NOT NULL,
timeperiodid bigint NOT NULL,
PRIMARY KEY (maintenance_timeperiodid)
);
CREATE UNIQUE INDEX maintenances_windows_1 ON maintenances_windows (maintenanceid,timeperiodid);
CREATE INDEX maintenances_windows_2 ON maintenances_windows (timeperiodid);
CREATE TABLE regexps (
regexpid bigint NOT NULL,
name varchar(128) DEFAULT '' NOT NULL,
test_string text DEFAULT '' NOT NULL,
PRIMARY KEY (regexpid)
);
CREATE UNIQUE INDEX regexps_1 ON regexps (name);
CREATE TABLE expressions (
expressionid bigint NOT NULL,
regexpid bigint NOT NULL,
expression varchar(255) DEFAULT '' NOT NULL,
expression_type integer DEFAULT '0' NOT NULL,
exp_delimiter varchar(1) DEFAULT '' NOT NULL,
case_sensitive integer DEFAULT '0' NOT NULL,
PRIMARY KEY (expressionid)
);
CREATE INDEX expressions_1 ON expressions (regexpid);
CREATE TABLE ids (
table_name varchar(64) DEFAULT '' NOT NULL,
field_name varchar(64) DEFAULT '' NOT NULL,
nextid bigint NOT NULL,
PRIMARY KEY (table_name,field_name)
);
CREATE TABLE alerts (
alertid bigint NOT NULL,
actionid bigint NOT NULL,
eventid bigint NOT NULL,
userid bigint NULL,
clock integer DEFAULT '0' NOT NULL,
mediatypeid bigint NULL,
sendto varchar(100) DEFAULT '' NOT NULL,
subject varchar(255) DEFAULT '' NOT NULL,
message text DEFAULT '' NOT NULL,
status integer DEFAULT '0' NOT NULL,
retries integer DEFAULT '0' NOT NULL,
error varchar(128) DEFAULT '' NOT NULL,
esc_step integer DEFAULT '0' NOT NULL,
alerttype integer DEFAULT '0' NOT NULL,
PRIMARY KEY (alertid)
);
CREATE INDEX alerts_1 ON alerts (actionid);
CREATE INDEX alerts_2 ON alerts (clock);
CREATE INDEX alerts_3 ON alerts (eventid);
CREATE INDEX alerts_4 ON alerts (status,retries);
CREATE INDEX alerts_5 ON alerts (mediatypeid);
CREATE INDEX alerts_6 ON alerts (userid);
CREATE TABLE history (
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value numeric(16,4) DEFAULT '0.0000' NOT NULL,
ns integer DEFAULT '0' NOT NULL
);
CREATE INDEX history_1 ON history (itemid,clock);
CREATE TABLE history_uint (
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value numeric(20) DEFAULT '0' NOT NULL,
ns integer DEFAULT '0' NOT NULL
);
CREATE INDEX history_uint_1 ON history_uint (itemid,clock);
CREATE TABLE history_str (
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
ns integer DEFAULT '0' NOT NULL
);
CREATE INDEX history_str_1 ON history_str (itemid,clock);
CREATE TABLE history_log (
id bigint NOT NULL,
itemid bigint 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 text DEFAULT '' NOT NULL,
logeventid integer DEFAULT '0' NOT NULL,
ns integer DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX history_log_1 ON history_log (itemid,clock);
CREATE UNIQUE INDEX history_log_2 ON history_log (itemid,id);
CREATE TABLE history_text (
id bigint NOT NULL,
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value text DEFAULT '' NOT NULL,
ns integer DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX history_text_1 ON history_text (itemid,clock);
CREATE UNIQUE INDEX history_text_2 ON history_text (itemid,id);
CREATE TABLE proxy_history (
id bigserial NOT NULL,
itemid bigint 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 text DEFAULT '' NOT NULL,
logeventid integer DEFAULT '0' NOT NULL,
ns integer DEFAULT '0' NOT NULL,
state integer DEFAULT '0' NOT NULL,
lastlogsize numeric(20) DEFAULT '0' NOT NULL,
mtime integer DEFAULT '0' NOT NULL,
flags integer DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX proxy_history_1 ON proxy_history (clock);
CREATE TABLE proxy_dhistory (
id bigserial NOT NULL,
clock integer DEFAULT '0' NOT NULL,
druleid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
ip varchar(39) DEFAULT '' NOT NULL,
port integer DEFAULT '0' NOT NULL,
key_ varchar(255) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
status integer DEFAULT '0' NOT NULL,
dcheckid bigint NULL,
dns varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX proxy_dhistory_1 ON proxy_dhistory (clock);
CREATE TABLE events (
eventid bigint NOT NULL,
source integer DEFAULT '0' NOT NULL,
object integer DEFAULT '0' NOT NULL,
objectid bigint DEFAULT '0' NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value integer DEFAULT '0' NOT NULL,
acknowledged integer DEFAULT '0' NOT NULL,
ns integer DEFAULT '0' NOT NULL,
PRIMARY KEY (eventid)
);
CREATE INDEX events_1 ON events (source,object,objectid,clock);
CREATE INDEX events_2 ON events (source,object,clock);
CREATE TABLE trends (
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
num integer DEFAULT '0' NOT NULL,
value_min numeric(16,4) DEFAULT '0.0000' NOT NULL,
value_avg numeric(16,4) DEFAULT '0.0000' NOT NULL,
value_max numeric(16,4) DEFAULT '0.0000' NOT NULL,
PRIMARY KEY (itemid,clock)
);
CREATE TABLE trends_uint (
itemid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
num integer DEFAULT '0' NOT NULL,
value_min numeric(20) DEFAULT '0' NOT NULL,
value_avg numeric(20) DEFAULT '0' NOT NULL,
value_max numeric(20) DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock)
);
CREATE TABLE acknowledges (
acknowledgeid bigint NOT NULL,
userid bigint NOT NULL,
eventid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
message varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (acknowledgeid)
);
CREATE INDEX acknowledges_1 ON acknowledges (userid);
CREATE INDEX acknowledges_2 ON acknowledges (eventid);
CREATE INDEX acknowledges_3 ON acknowledges (clock);
CREATE TABLE auditlog (
auditid bigint NOT NULL,
userid bigint 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,
ip varchar(39) DEFAULT '' NOT NULL,
resourceid bigint DEFAULT '0' NOT NULL,
resourcename varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (auditid)
);
CREATE INDEX auditlog_1 ON auditlog (userid,clock);
CREATE INDEX auditlog_2 ON auditlog (clock);
CREATE TABLE auditlog_details (
auditdetailid bigint NOT NULL,
auditid bigint NOT NULL,
table_name varchar(64) DEFAULT '' NOT NULL,
field_name varchar(64) DEFAULT '' NOT NULL,
oldvalue text DEFAULT '' NOT NULL,
newvalue text DEFAULT '' NOT NULL,
PRIMARY KEY (auditdetailid)
);
CREATE INDEX auditlog_details_1 ON auditlog_details (auditid);
CREATE TABLE service_alarms (
servicealarmid bigint NOT NULL,
serviceid bigint NOT NULL,
clock integer DEFAULT '0' NOT NULL,
value integer DEFAULT '0' NOT NULL,
PRIMARY KEY (servicealarmid)
);
CREATE INDEX service_alarms_1 ON service_alarms (serviceid,clock);
CREATE INDEX service_alarms_2 ON service_alarms (clock);
CREATE TABLE autoreg_host (
autoreg_hostid bigint NOT NULL,
proxy_hostid bigint NULL,
host varchar(64) DEFAULT '' NOT NULL,
listen_ip varchar(39) DEFAULT '' NOT NULL,
listen_port integer DEFAULT '0' NOT NULL,
listen_dns varchar(64) DEFAULT '' NOT NULL,
host_metadata varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (autoreg_hostid)
);
CREATE INDEX autoreg_host_1 ON autoreg_host (proxy_hostid,host);
CREATE TABLE proxy_autoreg_host (
id bigserial NOT NULL,
clock integer DEFAULT '0' NOT NULL,
host varchar(64) DEFAULT '' NOT NULL,
listen_ip varchar(39) DEFAULT '' NOT NULL,
listen_port integer DEFAULT '0' NOT NULL,
listen_dns varchar(64) DEFAULT '' NOT NULL,
host_metadata varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (id)
);
CREATE INDEX proxy_autoreg_host_1 ON proxy_autoreg_host (clock);
CREATE TABLE dhosts (
dhostid bigint NOT NULL,
druleid bigint NOT NULL,
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dhostid)
);
CREATE INDEX dhosts_1 ON dhosts (druleid);
CREATE TABLE dservices (
dserviceid bigint NOT NULL,
dhostid bigint NOT NULL,
type integer DEFAULT '0' NOT NULL,
key_ varchar(255) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
port integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
dcheckid bigint NOT NULL,
ip varchar(39) DEFAULT '' NOT NULL,
dns varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (dserviceid)
);
CREATE UNIQUE INDEX dservices_1 ON dservices (dcheckid,type,key_,ip,port);
CREATE INDEX dservices_2 ON dservices (dhostid);
CREATE TABLE escalations (
escalationid bigint NOT NULL,
actionid bigint NOT NULL,
triggerid bigint NULL,
eventid bigint NULL,
r_eventid bigint NULL,
nextcheck integer DEFAULT '0' NOT NULL,
esc_step integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
itemid bigint NULL,
PRIMARY KEY (escalationid)
);
CREATE UNIQUE INDEX escalations_1 ON escalations (actionid,triggerid,itemid,escalationid);
CREATE TABLE globalvars (
globalvarid bigint NOT NULL,
snmp_lastsize integer DEFAULT '0' NOT NULL,
PRIMARY KEY (globalvarid)
);
CREATE TABLE graph_discovery (
graphid bigint NOT NULL,
parent_graphid bigint NOT NULL,
PRIMARY KEY (graphid)
);
CREATE INDEX graph_discovery_1 ON graph_discovery (parent_graphid);
CREATE TABLE host_inventory (
hostid bigint NOT NULL,
inventory_mode integer DEFAULT '0' NOT NULL,
type varchar(64) DEFAULT '' NOT NULL,
type_full varchar(64) DEFAULT '' NOT NULL,
name varchar(64) DEFAULT '' NOT NULL,
alias varchar(64) DEFAULT '' NOT NULL,
os varchar(64) DEFAULT '' NOT NULL,
os_full varchar(255) DEFAULT '' NOT NULL,
os_short varchar(64) DEFAULT '' NOT NULL,
serialno_a varchar(64) DEFAULT '' NOT NULL,
serialno_b varchar(64) DEFAULT '' NOT NULL,
tag varchar(64) DEFAULT '' NOT NULL,
asset_tag varchar(64) DEFAULT '' NOT NULL,
macaddress_a varchar(64) DEFAULT '' NOT NULL,
macaddress_b varchar(64) DEFAULT '' NOT NULL,
hardware varchar(255) DEFAULT '' NOT NULL,
hardware_full text DEFAULT '' NOT NULL,
software varchar(255) DEFAULT '' NOT NULL,
software_full text DEFAULT '' NOT NULL,
software_app_a varchar(64) DEFAULT '' NOT NULL,
software_app_b varchar(64) DEFAULT '' NOT NULL,
software_app_c varchar(64) DEFAULT '' NOT NULL,
software_app_d varchar(64) DEFAULT '' NOT NULL,
software_app_e varchar(64) DEFAULT '' NOT NULL,
contact text DEFAULT '' NOT NULL,
location text DEFAULT '' NOT NULL,
location_lat varchar(16) DEFAULT '' NOT NULL,
location_lon varchar(16) DEFAULT '' NOT NULL,
notes text DEFAULT '' NOT NULL,
chassis varchar(64) DEFAULT '' NOT NULL,
model varchar(64) DEFAULT '' NOT NULL,
hw_arch varchar(32) DEFAULT '' NOT NULL,
vendor varchar(64) DEFAULT '' NOT NULL,
contract_number varchar(64) DEFAULT '' NOT NULL,
installer_name varchar(64) DEFAULT '' NOT NULL,
deployment_status varchar(64) DEFAULT '' NOT NULL,
url_a varchar(255) DEFAULT '' NOT NULL,
url_b varchar(255) DEFAULT '' NOT NULL,
url_c varchar(255) DEFAULT '' NOT NULL,
host_networks text DEFAULT '' NOT NULL,
host_netmask varchar(39) DEFAULT '' NOT NULL,
host_router varchar(39) DEFAULT '' NOT NULL,
oob_ip varchar(39) DEFAULT '' NOT NULL,
oob_netmask varchar(39) DEFAULT '' NOT NULL,
oob_router varchar(39) DEFAULT '' NOT NULL,
date_hw_purchase varchar(64) DEFAULT '' NOT NULL,
date_hw_install varchar(64) DEFAULT '' NOT NULL,
date_hw_expiry varchar(64) DEFAULT '' NOT NULL,
date_hw_decomm varchar(64) DEFAULT '' NOT NULL,
site_address_a varchar(128) DEFAULT '' NOT NULL,
site_address_b varchar(128) DEFAULT '' NOT NULL,
site_address_c varchar(128) DEFAULT '' NOT NULL,
site_city varchar(128) DEFAULT '' NOT NULL,
site_state varchar(64) DEFAULT '' NOT NULL,
site_country varchar(64) DEFAULT '' NOT NULL,
site_zip varchar(64) DEFAULT '' NOT NULL,
site_rack varchar(128) DEFAULT '' NOT NULL,
site_notes text DEFAULT '' NOT NULL,
poc_1_name varchar(128) DEFAULT '' NOT NULL,
poc_1_email varchar(128) DEFAULT '' NOT NULL,
poc_1_phone_a varchar(64) DEFAULT '' NOT NULL,
poc_1_phone_b varchar(64) DEFAULT '' NOT NULL,
poc_1_cell varchar(64) DEFAULT '' NOT NULL,
poc_1_screen varchar(64) DEFAULT '' NOT NULL,
poc_1_notes text DEFAULT '' NOT NULL,
poc_2_name varchar(128) DEFAULT '' NOT NULL,
poc_2_email varchar(128) DEFAULT '' NOT NULL,
poc_2_phone_a varchar(64) DEFAULT '' NOT NULL,
poc_2_phone_b varchar(64) DEFAULT '' NOT NULL,
poc_2_cell varchar(64) DEFAULT '' NOT NULL,
poc_2_screen varchar(64) DEFAULT '' NOT NULL,
poc_2_notes text DEFAULT '' NOT NULL,
PRIMARY KEY (hostid)
);
CREATE TABLE housekeeper (
housekeeperid bigint NOT NULL,
tablename varchar(64) DEFAULT '' NOT NULL,
field varchar(64) DEFAULT '' NOT NULL,
value bigint NOT NULL,
PRIMARY KEY (housekeeperid)
);
CREATE TABLE images (
imageid bigint NOT NULL,
imagetype integer DEFAULT '0' NOT NULL,
name varchar(64) DEFAULT '0' NOT NULL,
image bytea DEFAULT '' NOT NULL,
PRIMARY KEY (imageid)
);
CREATE UNIQUE INDEX images_1 ON images (name);
CREATE TABLE item_discovery (
itemdiscoveryid bigint NOT NULL,
itemid bigint NOT NULL,
parent_itemid bigint NOT NULL,
key_ varchar(255) DEFAULT '' NOT NULL,
lastcheck integer DEFAULT '0' NOT NULL,
ts_delete integer DEFAULT '0' NOT NULL,
PRIMARY KEY (itemdiscoveryid)
);
CREATE UNIQUE INDEX item_discovery_1 ON item_discovery (itemid,parent_itemid);
CREATE INDEX item_discovery_2 ON item_discovery (parent_itemid);
CREATE TABLE host_discovery (
hostid bigint NOT NULL,
parent_hostid bigint NULL,
parent_itemid bigint NULL,
host varchar(64) DEFAULT '' NOT NULL,
lastcheck integer DEFAULT '0' NOT NULL,
ts_delete integer DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid)
);
CREATE TABLE interface_discovery (
interfaceid bigint NOT NULL,
parent_interfaceid bigint NOT NULL,
PRIMARY KEY (interfaceid)
);
CREATE TABLE profiles (
profileid bigint NOT NULL,
userid bigint NOT NULL,
idx varchar(96) DEFAULT '' NOT NULL,
idx2 bigint DEFAULT '0' NOT NULL,
value_id bigint DEFAULT '0' NOT NULL,
value_int integer DEFAULT '0' NOT NULL,
value_str varchar(255) DEFAULT '' NOT NULL,
source varchar(96) DEFAULT '' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (profileid)
);
CREATE INDEX profiles_1 ON profiles (userid,idx,idx2);
CREATE INDEX profiles_2 ON profiles (userid,profileid);
CREATE TABLE sessions (
sessionid varchar(32) DEFAULT '' NOT NULL,
userid bigint NOT NULL,
lastaccess integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
PRIMARY KEY (sessionid)
);
CREATE INDEX sessions_1 ON sessions (userid,status);
CREATE TABLE trigger_discovery (
triggerid bigint NOT NULL,
parent_triggerid bigint NOT NULL,
PRIMARY KEY (triggerid)
);
CREATE INDEX trigger_discovery_1 ON trigger_discovery (parent_triggerid);
CREATE TABLE application_template (
application_templateid bigint NOT NULL,
applicationid bigint NOT NULL,
templateid bigint NOT NULL,
PRIMARY KEY (application_templateid)
);
CREATE UNIQUE INDEX application_template_1 ON application_template (applicationid,templateid);
CREATE INDEX application_template_2 ON application_template (templateid);
CREATE TABLE item_condition (
item_conditionid bigint NOT NULL,
itemid bigint NOT NULL,
operator integer DEFAULT '8' NOT NULL,
macro varchar(64) DEFAULT '' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (item_conditionid)
);
CREATE INDEX item_condition_1 ON item_condition (itemid);
CREATE TABLE application_prototype (
application_prototypeid bigint NOT NULL,
itemid bigint NOT NULL,
templateid bigint NULL,
name varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (application_prototypeid)
);
CREATE INDEX application_prototype_1 ON application_prototype (itemid);
CREATE INDEX application_prototype_2 ON application_prototype (templateid);
CREATE TABLE item_application_prototype (
item_application_prototypeid bigint NOT NULL,
application_prototypeid bigint NOT NULL,
itemid bigint NOT NULL,
PRIMARY KEY (item_application_prototypeid)
);
CREATE UNIQUE INDEX item_application_prototype_1 ON item_application_prototype (application_prototypeid,itemid);
CREATE INDEX item_application_prototype_2 ON item_application_prototype (itemid);
CREATE TABLE application_discovery (
application_discoveryid bigint NOT NULL,
applicationid bigint NOT NULL,
application_prototypeid bigint NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
lastcheck integer DEFAULT '0' NOT NULL,
ts_delete integer DEFAULT '0' NOT NULL,
PRIMARY KEY (application_discoveryid)
);
CREATE INDEX application_discovery_1 ON application_discovery (applicationid);
CREATE INDEX application_discovery_2 ON application_discovery (application_prototypeid);
CREATE TABLE opinventory (
operationid bigint NOT NULL,
inventory_mode integer DEFAULT '0' NOT NULL,
PRIMARY KEY (operationid)
);
CREATE TABLE dbversion (
mandatory integer DEFAULT '0' NOT NULL,
optional integer DEFAULT '0' NOT NULL
);
INSERT INTO dbversion VALUES ('3000000','3000000');
ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid);
ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_2 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid);
ALTER TABLE ONLY hosts ADD CONSTRAINT c_hosts_3 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_2 FOREIGN KEY (groupid) REFERENCES groups (groupid);
ALTER TABLE ONLY group_prototype ADD CONSTRAINT c_group_prototype_3 FOREIGN KEY (templateid) REFERENCES group_prototype (group_prototypeid) ON DELETE CASCADE;
ALTER TABLE ONLY group_discovery ADD CONSTRAINT c_group_discovery_1 FOREIGN KEY (groupid) REFERENCES groups (groupid) ON DELETE CASCADE;
ALTER TABLE ONLY group_discovery ADD CONSTRAINT c_group_discovery_2 FOREIGN KEY (parent_group_prototypeid) REFERENCES group_prototype (group_prototypeid);
ALTER TABLE ONLY screens ADD CONSTRAINT c_screens_1 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY screens ADD CONSTRAINT c_screens_3 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE ONLY screens_items ADD CONSTRAINT c_screens_items_1 FOREIGN KEY (screenid) REFERENCES screens (screenid) ON DELETE CASCADE;
ALTER TABLE ONLY screen_user ADD CONSTRAINT c_screen_user_1 FOREIGN KEY (screenid) REFERENCES screens (screenid) ON DELETE CASCADE;
ALTER TABLE ONLY screen_user ADD CONSTRAINT c_screen_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY screen_usrgrp ADD CONSTRAINT c_screen_usrgrp_1 FOREIGN KEY (screenid) REFERENCES screens (screenid) ON DELETE CASCADE;
ALTER TABLE ONLY screen_usrgrp ADD CONSTRAINT c_screen_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE ONLY slideshows ADD CONSTRAINT c_slideshows_3 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE ONLY slideshow_user ADD CONSTRAINT c_slideshow_user_1 FOREIGN KEY (slideshowid) REFERENCES slideshows (slideshowid) ON DELETE CASCADE;
ALTER TABLE ONLY slideshow_user ADD CONSTRAINT c_slideshow_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY slideshow_usrgrp ADD CONSTRAINT c_slideshow_usrgrp_1 FOREIGN KEY (slideshowid) REFERENCES slideshows (slideshowid) ON DELETE CASCADE;
ALTER TABLE ONLY slideshow_usrgrp ADD CONSTRAINT c_slideshow_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE ONLY slides ADD CONSTRAINT c_slides_1 FOREIGN KEY (slideshowid) REFERENCES slideshows (slideshowid) ON DELETE CASCADE;
ALTER TABLE ONLY slides ADD CONSTRAINT c_slides_2 FOREIGN KEY (screenid) REFERENCES screens (screenid) ON DELETE CASCADE;
ALTER TABLE ONLY drules ADD CONSTRAINT c_drules_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid);
ALTER TABLE ONLY dchecks ADD CONSTRAINT c_dchecks_1 FOREIGN KEY (druleid) REFERENCES drules (druleid) ON DELETE CASCADE;
ALTER TABLE ONLY applications ADD CONSTRAINT c_applications_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY httptest ADD CONSTRAINT c_httptest_1 FOREIGN KEY (applicationid) REFERENCES applications (applicationid);
ALTER TABLE ONLY httptest ADD CONSTRAINT c_httptest_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY httptest ADD CONSTRAINT c_httptest_3 FOREIGN KEY (templateid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE ONLY httpstep ADD CONSTRAINT c_httpstep_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE ONLY interface ADD CONSTRAINT c_interface_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY items ADD CONSTRAINT c_items_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY items ADD CONSTRAINT c_items_2 FOREIGN KEY (templateid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY items ADD CONSTRAINT c_items_3 FOREIGN KEY (valuemapid) REFERENCES valuemaps (valuemapid);
ALTER TABLE ONLY items ADD CONSTRAINT c_items_4 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid);
ALTER TABLE ONLY httpstepitem ADD CONSTRAINT c_httpstepitem_1 FOREIGN KEY (httpstepid) REFERENCES httpstep (httpstepid) ON DELETE CASCADE;
ALTER TABLE ONLY httpstepitem ADD CONSTRAINT c_httpstepitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY httptestitem ADD CONSTRAINT c_httptestitem_1 FOREIGN KEY (httptestid) REFERENCES httptest (httptestid) ON DELETE CASCADE;
ALTER TABLE ONLY httptestitem ADD CONSTRAINT c_httptestitem_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY users_groups ADD CONSTRAINT c_users_groups_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE ONLY users_groups ADD CONSTRAINT c_users_groups_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY scripts ADD CONSTRAINT c_scripts_1 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE ONLY scripts ADD CONSTRAINT c_scripts_2 FOREIGN KEY (groupid) REFERENCES groups (groupid);
ALTER TABLE ONLY operations ADD CONSTRAINT c_operations_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE ONLY opmessage ADD CONSTRAINT c_opmessage_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opmessage ADD CONSTRAINT c_opmessage_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid);
ALTER TABLE ONLY opmessage_grp ADD CONSTRAINT c_opmessage_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opmessage_grp ADD CONSTRAINT c_opmessage_grp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE ONLY opmessage_usr ADD CONSTRAINT c_opmessage_usr_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opmessage_usr ADD CONSTRAINT c_opmessage_usr_2 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE ONLY opcommand ADD CONSTRAINT c_opcommand_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opcommand ADD CONSTRAINT c_opcommand_2 FOREIGN KEY (scriptid) REFERENCES scripts (scriptid);
ALTER TABLE ONLY opcommand_hst ADD CONSTRAINT c_opcommand_hst_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opcommand_hst ADD CONSTRAINT c_opcommand_hst_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid);
ALTER TABLE ONLY opcommand_grp ADD CONSTRAINT c_opcommand_grp_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opcommand_grp ADD CONSTRAINT c_opcommand_grp_2 FOREIGN KEY (groupid) REFERENCES groups (groupid);
ALTER TABLE ONLY opgroup ADD CONSTRAINT c_opgroup_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY opgroup ADD CONSTRAINT c_opgroup_2 FOREIGN KEY (groupid) REFERENCES groups (groupid);
ALTER TABLE ONLY optemplate ADD CONSTRAINT c_optemplate_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY optemplate ADD CONSTRAINT c_optemplate_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid);
ALTER TABLE ONLY opconditions ADD CONSTRAINT c_opconditions_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
ALTER TABLE ONLY conditions ADD CONSTRAINT c_conditions_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE ONLY config ADD CONSTRAINT c_config_1 FOREIGN KEY (alert_usrgrpid) REFERENCES usrgrp (usrgrpid);
ALTER TABLE ONLY config ADD CONSTRAINT c_config_2 FOREIGN KEY (discovery_groupid) REFERENCES groups (groupid);
ALTER TABLE ONLY triggers ADD CONSTRAINT c_triggers_1 FOREIGN KEY (templateid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY trigger_depends ADD CONSTRAINT c_trigger_depends_1 FOREIGN KEY (triggerid_down) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY trigger_depends ADD CONSTRAINT c_trigger_depends_2 FOREIGN KEY (triggerid_up) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY functions ADD CONSTRAINT c_functions_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY functions ADD CONSTRAINT c_functions_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_1 FOREIGN KEY (templateid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_2 FOREIGN KEY (ymin_itemid) REFERENCES items (itemid);
ALTER TABLE ONLY graphs ADD CONSTRAINT c_graphs_3 FOREIGN KEY (ymax_itemid) REFERENCES items (itemid);
ALTER TABLE ONLY graphs_items ADD CONSTRAINT c_graphs_items_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE ONLY graphs_items ADD CONSTRAINT c_graphs_items_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY hostmacro ADD CONSTRAINT c_hostmacro_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY hosts_groups ADD CONSTRAINT c_hosts_groups_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY hosts_groups ADD CONSTRAINT c_hosts_groups_2 FOREIGN KEY (groupid) REFERENCES groups (groupid) ON DELETE CASCADE;
ALTER TABLE ONLY hosts_templates ADD CONSTRAINT c_hosts_templates_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY hosts_templates ADD CONSTRAINT c_hosts_templates_2 FOREIGN KEY (templateid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY items_applications ADD CONSTRAINT c_items_applications_1 FOREIGN KEY (applicationid) REFERENCES applications (applicationid) ON DELETE CASCADE;
ALTER TABLE ONLY items_applications ADD CONSTRAINT c_items_applications_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY mappings ADD CONSTRAINT c_mappings_1 FOREIGN KEY (valuemapid) REFERENCES valuemaps (valuemapid) ON DELETE CASCADE;
ALTER TABLE ONLY media ADD CONSTRAINT c_media_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY media ADD CONSTRAINT c_media_2 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE ONLY rights ADD CONSTRAINT c_rights_1 FOREIGN KEY (groupid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE ONLY rights ADD CONSTRAINT c_rights_2 FOREIGN KEY (id) REFERENCES groups (groupid) ON DELETE CASCADE;
ALTER TABLE ONLY services ADD CONSTRAINT c_services_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY services_links ADD CONSTRAINT c_services_links_1 FOREIGN KEY (serviceupid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE ONLY services_links ADD CONSTRAINT c_services_links_2 FOREIGN KEY (servicedownid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE ONLY services_times ADD CONSTRAINT c_services_times_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE ONLY icon_map ADD CONSTRAINT c_icon_map_1 FOREIGN KEY (default_iconid) REFERENCES images (imageid);
ALTER TABLE ONLY icon_mapping ADD CONSTRAINT c_icon_mapping_1 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid) ON DELETE CASCADE;
ALTER TABLE ONLY icon_mapping ADD CONSTRAINT c_icon_mapping_2 FOREIGN KEY (iconid) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_1 FOREIGN KEY (backgroundid) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_2 FOREIGN KEY (iconmapid) REFERENCES icon_map (iconmapid);
ALTER TABLE ONLY sysmaps ADD CONSTRAINT c_sysmaps_3 FOREIGN KEY (userid) REFERENCES users (userid);
ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_2 FOREIGN KEY (iconid_off) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_3 FOREIGN KEY (iconid_on) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_4 FOREIGN KEY (iconid_disabled) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps_elements ADD CONSTRAINT c_sysmaps_elements_5 FOREIGN KEY (iconid_maintenance) REFERENCES images (imageid);
ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_2 FOREIGN KEY (selementid1) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmaps_links ADD CONSTRAINT c_sysmaps_links_3 FOREIGN KEY (selementid2) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_1 FOREIGN KEY (linkid) REFERENCES sysmaps_links (linkid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmaps_link_triggers ADD CONSTRAINT c_sysmaps_link_triggers_2 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_element_url ADD CONSTRAINT c_sysmap_element_url_1 FOREIGN KEY (selementid) REFERENCES sysmaps_elements (selementid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_url ADD CONSTRAINT c_sysmap_url_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_user ADD CONSTRAINT c_sysmap_user_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_user ADD CONSTRAINT c_sysmap_user_2 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_1 FOREIGN KEY (sysmapid) REFERENCES sysmaps (sysmapid) ON DELETE CASCADE;
ALTER TABLE ONLY sysmap_usrgrp ADD CONSTRAINT c_sysmap_usrgrp_2 FOREIGN KEY (usrgrpid) REFERENCES usrgrp (usrgrpid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_hosts ADD CONSTRAINT c_maintenances_hosts_2 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_groups ADD CONSTRAINT c_maintenances_groups_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_groups ADD CONSTRAINT c_maintenances_groups_2 FOREIGN KEY (groupid) REFERENCES groups (groupid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_windows ADD CONSTRAINT c_maintenances_windows_1 FOREIGN KEY (maintenanceid) REFERENCES maintenances (maintenanceid) ON DELETE CASCADE;
ALTER TABLE ONLY maintenances_windows ADD CONSTRAINT c_maintenances_windows_2 FOREIGN KEY (timeperiodid) REFERENCES timeperiods (timeperiodid) ON DELETE CASCADE;
ALTER TABLE ONLY expressions ADD CONSTRAINT c_expressions_1 FOREIGN KEY (regexpid) REFERENCES regexps (regexpid) ON DELETE CASCADE;
ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_1 FOREIGN KEY (actionid) REFERENCES actions (actionid) ON DELETE CASCADE;
ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_3 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY alerts ADD CONSTRAINT c_alerts_4 FOREIGN KEY (mediatypeid) REFERENCES media_type (mediatypeid) ON DELETE CASCADE;
ALTER TABLE ONLY acknowledges ADD CONSTRAINT c_acknowledges_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY acknowledges ADD CONSTRAINT c_acknowledges_2 FOREIGN KEY (eventid) REFERENCES events (eventid) ON DELETE CASCADE;
ALTER TABLE ONLY auditlog ADD CONSTRAINT c_auditlog_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY auditlog_details ADD CONSTRAINT c_auditlog_details_1 FOREIGN KEY (auditid) REFERENCES auditlog (auditid) ON DELETE CASCADE;
ALTER TABLE ONLY service_alarms ADD CONSTRAINT c_service_alarms_1 FOREIGN KEY (serviceid) REFERENCES services (serviceid) ON DELETE CASCADE;
ALTER TABLE ONLY autoreg_host ADD CONSTRAINT c_autoreg_host_1 FOREIGN KEY (proxy_hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY dhosts ADD CONSTRAINT c_dhosts_1 FOREIGN KEY (druleid) REFERENCES drules (druleid) ON DELETE CASCADE;
ALTER TABLE ONLY dservices ADD CONSTRAINT c_dservices_1 FOREIGN KEY (dhostid) REFERENCES dhosts (dhostid) ON DELETE CASCADE;
ALTER TABLE ONLY dservices ADD CONSTRAINT c_dservices_2 FOREIGN KEY (dcheckid) REFERENCES dchecks (dcheckid) ON DELETE CASCADE;
ALTER TABLE ONLY graph_discovery ADD CONSTRAINT c_graph_discovery_1 FOREIGN KEY (graphid) REFERENCES graphs (graphid) ON DELETE CASCADE;
ALTER TABLE ONLY graph_discovery ADD CONSTRAINT c_graph_discovery_2 FOREIGN KEY (parent_graphid) REFERENCES graphs (graphid);
ALTER TABLE ONLY host_inventory ADD CONSTRAINT c_host_inventory_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY item_discovery ADD CONSTRAINT c_item_discovery_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY item_discovery ADD CONSTRAINT c_item_discovery_2 FOREIGN KEY (parent_itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_1 FOREIGN KEY (hostid) REFERENCES hosts (hostid) ON DELETE CASCADE;
ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_2 FOREIGN KEY (parent_hostid) REFERENCES hosts (hostid);
ALTER TABLE ONLY host_discovery ADD CONSTRAINT c_host_discovery_3 FOREIGN KEY (parent_itemid) REFERENCES items (itemid);
ALTER TABLE ONLY interface_discovery ADD CONSTRAINT c_interface_discovery_1 FOREIGN KEY (interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE;
ALTER TABLE ONLY interface_discovery ADD CONSTRAINT c_interface_discovery_2 FOREIGN KEY (parent_interfaceid) REFERENCES interface (interfaceid) ON DELETE CASCADE;
ALTER TABLE ONLY profiles ADD CONSTRAINT c_profiles_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY sessions ADD CONSTRAINT c_sessions_1 FOREIGN KEY (userid) REFERENCES users (userid) ON DELETE CASCADE;
ALTER TABLE ONLY trigger_discovery ADD CONSTRAINT c_trigger_discovery_1 FOREIGN KEY (triggerid) REFERENCES triggers (triggerid) ON DELETE CASCADE;
ALTER TABLE ONLY trigger_discovery ADD CONSTRAINT c_trigger_discovery_2 FOREIGN KEY (parent_triggerid) REFERENCES triggers (triggerid);
ALTER TABLE ONLY application_template ADD CONSTRAINT c_application_template_1 FOREIGN KEY (applicationid) REFERENCES applications (applicationid) ON DELETE CASCADE;
ALTER TABLE ONLY application_template ADD CONSTRAINT c_application_template_2 FOREIGN KEY (templateid) REFERENCES applications (applicationid) ON DELETE CASCADE;
ALTER TABLE ONLY item_condition ADD CONSTRAINT c_item_condition_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY application_prototype ADD CONSTRAINT c_application_prototype_1 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY application_prototype ADD CONSTRAINT c_application_prototype_2 FOREIGN KEY (templateid) REFERENCES application_prototype (application_prototypeid) ON DELETE CASCADE;
ALTER TABLE ONLY item_application_prototype ADD CONSTRAINT c_item_application_prototype_1 FOREIGN KEY (application_prototypeid) REFERENCES application_prototype (application_prototypeid) ON DELETE CASCADE;
ALTER TABLE ONLY item_application_prototype ADD CONSTRAINT c_item_application_prototype_2 FOREIGN KEY (itemid) REFERENCES items (itemid) ON DELETE CASCADE;
ALTER TABLE ONLY application_discovery ADD CONSTRAINT c_application_discovery_1 FOREIGN KEY (applicationid) REFERENCES applications (applicationid) ON DELETE CASCADE;
ALTER TABLE ONLY application_discovery ADD CONSTRAINT c_application_discovery_2 FOREIGN KEY (application_prototypeid) REFERENCES application_prototype (application_prototypeid) ON DELETE CASCADE;
ALTER TABLE ONLY opinventory ADD CONSTRAINT c_opinventory_1 FOREIGN KEY (operationid) REFERENCES operations (operationid) ON DELETE CASCADE;
|