summaryrefslogtreecommitdiffstats
path: root/create
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-06-25 18:48:13 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-06-25 18:48:13 +0000
commit94356c5598c353908f8f02ea89827a57b95a0e3d (patch)
tree680f029599d77e129212798601572c518d710ba7 /create
parent0db5010365e68d85776cc095012f95d6b2cdcd60 (diff)
downloadzabbix-94356c5598c353908f8f02ea89827a57b95a0e3d.tar.gz
zabbix-94356c5598c353908f8f02ea89827a57b95a0e3d.tar.xz
zabbix-94356c5598c353908f8f02ea89827a57b95a0e3d.zip
Support for graphs.html
git-svn-id: svn://svn.zabbix.com/trunk@108 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create')
-rw-r--r--create/mysql/schema.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/create/mysql/schema.sql b/create/mysql/schema.sql
index e37f48d7..562deb8b 100644
--- a/create/mysql/schema.sql
+++ b/create/mysql/schema.sql
@@ -1,4 +1,17 @@
#
+# Table structure for table 'graphs'
+#
+
+CREATE TABLE graphs (
+ graphid int(4) NOT NULL auto_increment,
+ name varchar(128) DEFAULT '' NOT NULL,
+ width int(4) DEFAULT '0' NOT NULL,
+ height int(4) DEFAULT '0' NOT NULL,
+ PRIMARY KEY (graphid),
+ UNIQUE (name)
+);
+
+#
# Table structure for table 'sysmaps_hosts'
#