From f7cac54c235db36f17074bf78de5b30dd9415bcb Mon Sep 17 00:00:00 2001 From: hugetoad Date: Thu, 12 Jun 2003 20:20:55 +0000 Subject: - added support for units (Mb, Kb, Gb, etc) (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@819 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 8d3a26d0..6a82cb8e 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -62,6 +62,7 @@ CREATE TABLE items ( value_type int4 DEFAULT '0' NOT NULL, trapper_hosts varchar(255) DEFAULT '' NOT NULL, units varchar(10) DEFAULT '' NOT NULL, + multiplier int4 DEFAULT '0' NOT NULL, PRIMARY KEY (itemid), FOREIGN KEY (hostid) REFERENCES hosts ); -- cgit