diff options
author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-07-29 19:52:18 +0000 |
---|---|---|
committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-07-29 19:52:18 +0000 |
commit | e1ca70ccee2979487753ce2fa58c1378211a1097 (patch) | |
tree | 8dceffe4c29a5fe43ef07bdfc89e8461c7227783 /create | |
parent | 0b31e21be61308d1037e5e1a91521728c49e93ca (diff) | |
download | zabbix-e1ca70ccee2979487753ce2fa58c1378211a1097.tar.gz zabbix-e1ca70ccee2979487753ce2fa58c1378211a1097.tar.xz zabbix-e1ca70ccee2979487753ce2fa58c1378211a1097.zip |
- added table 'images' (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1366 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create')
21 files changed, 13 insertions, 0 deletions
diff --git a/create/data/images/Hub.png b/create/data/images/Hub.png Binary files differnew file mode 100644 index 00000000..3f45f255 --- /dev/null +++ b/create/data/images/Hub.png diff --git a/create/data/images/Hub_small.png b/create/data/images/Hub_small.png Binary files differnew file mode 100644 index 00000000..af8db605 --- /dev/null +++ b/create/data/images/Hub_small.png diff --git a/create/data/images/Network.png b/create/data/images/Network.png Binary files differnew file mode 100644 index 00000000..3f45f255 --- /dev/null +++ b/create/data/images/Network.png diff --git a/create/data/images/Network_small.png b/create/data/images/Network_small.png Binary files differnew file mode 100644 index 00000000..c07f5039 --- /dev/null +++ b/create/data/images/Network_small.png diff --git a/create/data/images/Notebook.png b/create/data/images/Notebook.png Binary files differnew file mode 100644 index 00000000..be6e6a6e --- /dev/null +++ b/create/data/images/Notebook.png diff --git a/create/data/images/Notebook_small.png b/create/data/images/Notebook_small.png Binary files differnew file mode 100644 index 00000000..79962e44 --- /dev/null +++ b/create/data/images/Notebook_small.png diff --git a/create/data/images/Phone.png b/create/data/images/Phone.png Binary files differnew file mode 100644 index 00000000..1a74f408 --- /dev/null +++ b/create/data/images/Phone.png diff --git a/create/data/images/Phone_small.png b/create/data/images/Phone_small.png Binary files differnew file mode 100644 index 00000000..e79d92a1 --- /dev/null +++ b/create/data/images/Phone_small.png diff --git a/create/data/images/Printer.png b/create/data/images/Printer.png Binary files differnew file mode 100644 index 00000000..362b5eca --- /dev/null +++ b/create/data/images/Printer.png diff --git a/create/data/images/Printer_small.png b/create/data/images/Printer_small.png Binary files differnew file mode 100644 index 00000000..00a35db8 --- /dev/null +++ b/create/data/images/Printer_small.png diff --git a/create/data/images/Router.png b/create/data/images/Router.png Binary files differnew file mode 100644 index 00000000..3f45f255 --- /dev/null +++ b/create/data/images/Router.png diff --git a/create/data/images/Router_small.png b/create/data/images/Router_small.png Binary files differnew file mode 100644 index 00000000..0f8ebcc8 --- /dev/null +++ b/create/data/images/Router_small.png diff --git a/create/data/images/Satellite.png b/create/data/images/Satellite.png Binary files differnew file mode 100644 index 00000000..d51106e9 --- /dev/null +++ b/create/data/images/Satellite.png diff --git a/create/data/images/Satellite_small.png b/create/data/images/Satellite_small.png Binary files differnew file mode 100644 index 00000000..cde64845 --- /dev/null +++ b/create/data/images/Satellite_small.png diff --git a/create/data/images/Server.png b/create/data/images/Server.png Binary files differnew file mode 100644 index 00000000..a5eb1231 --- /dev/null +++ b/create/data/images/Server.png diff --git a/create/data/images/Server_small.png b/create/data/images/Server_small.png Binary files differnew file mode 100644 index 00000000..e55c1d37 --- /dev/null +++ b/create/data/images/Server_small.png diff --git a/create/data/images/UPS.png b/create/data/images/UPS.png Binary files differnew file mode 100644 index 00000000..cc423e75 --- /dev/null +++ b/create/data/images/UPS.png diff --git a/create/data/images/UPS_small.png b/create/data/images/UPS_small.png Binary files differnew file mode 100644 index 00000000..aa87927d --- /dev/null +++ b/create/data/images/UPS_small.png diff --git a/create/data/images/Workstation.png b/create/data/images/Workstation.png Binary files differnew file mode 100644 index 00000000..efd416f5 --- /dev/null +++ b/create/data/images/Workstation.png diff --git a/create/data/images/Workstation_small.png b/create/data/images/Workstation_small.png Binary files differnew file mode 100644 index 00000000..e844c2ff --- /dev/null +++ b/create/data/images/Workstation_small.png diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql index 39f2f507..121a0e38 100644 --- a/create/mysql/schema.sql +++ b/create/mysql/schema.sql @@ -560,3 +560,16 @@ CREATE TABLE trends ( value_max double(16,4) DEFAULT '0.0000' NOT NULL, PRIMARY KEY (itemid,clock) ) type=InnoDB; + +-- +-- Table structure for table 'images' +-- + +CREATE TABLE images ( + imageid int(4) DEFAULT '0' NOT NULL, + imagetype int(4) DEFAULT '0' NOT NULL, + name varchar(64) DEFAULT '0' NOT NULL, + image blob DEFAULT '' NOT NULL, + PRIMARY KEY (imageid), + UNIQUE (imagetype, name) +) type=InnoDB; |