From afd9f9f5ef1d002ac92f3cc8e2a733fac69c2c20 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Wed, 25 Aug 2004 19:12:58 +0000 Subject: - added support for customised Y axis for graphs (Alexei) - added columns graphs.(yaxistype|yaxismin|yaxismax) (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1405 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 3 +++ 1 file changed, 3 insertions(+) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 646f25a9..ea246cac 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -396,6 +396,9 @@ CREATE TABLE graphs ( name varchar(128) DEFAULT '' NOT NULL, width int4 DEFAULT '0' NOT NULL, height int4 DEFAULT '0' NOT NULL, + yaxistype int2 DEFAULT '0' NOT NULL, + yaxismin float8 DEFAULT '0' NOT NULL, + yaxismax float8 DEFAULT '0' NOT NULL, PRIMARY KEY (graphid), UNIQUE (name) ); -- cgit