summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-04-02 06:25:48 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-04-02 06:25:48 +0000
commit31df2566aa416b3cb88010cf07b571e5644992dc (patch)
treec7b67db577f469520001431f8a5898dced85d01c /create/postgresql/schema.sql
parent69ac0b14036019a94cc3ceb44d447773df4198d0 (diff)
downloadzabbix-31df2566aa416b3cb88010cf07b571e5644992dc.tar.gz
zabbix-31df2566aa416b3cb88010cf07b571e5644992dc.tar.xz
zabbix-31df2566aa416b3cb88010cf07b571e5644992dc.zip
- column functions.lastvalue changed to varchar(255) (Alexei)
- column items.lastvalue changed to varchar(255) (Alexei) - column items.prevvalue changed to varchar(255) (Alexei) - changed definition of DebugLevel (Alexei) - support for version[zabbix_agent] (Alexei) - better validation of trigger expressions in validate_expression (Alexei) - common parser of config files in include/cfg.c (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@343 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 0dfed834..90b70c5c 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -34,9 +34,9 @@ CREATE TABLE items (
history int4 DEFAULT '0' NOT NULL,
lastdelete int4 DEFAULT '0' NOT NULL,
nextcheck int4 DEFAULT '0' NOT NULL,
- lastvalue float8 DEFAULT NULL,
+ lastvalue varchar(255) DEFAULT NULL,
lastclock int4 DEFAULT NULL,
- prevvalue float8 DEFAULT NULL,
+ prevvalue varchar(255) DEFAULT NULL,
status int4 DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid),
FOREIGN KEY (hostid) REFERENCES hosts
@@ -180,7 +180,7 @@ CREATE TABLE functions (
functionid serial,
itemid int4 DEFAULT '0' NOT NULL,
triggerid int4 DEFAULT '0' NOT NULL,
- lastvalue float8 DEFAULT '0.0000' NOT NULL,
+ lastvalue varchar(255) DEFAULT '0.0000' NOT NULL,
function varchar(10) DEFAULT '' NOT NULL,
parameter int4 DEFAULT '0' NOT NULL,
PRIMARY KEY (functionid),