summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-02-05 12:51:41 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-02-05 12:51:41 +0000
commite44191a6fe4a5a879b8c5badb6fda8d78853bec1 (patch)
tree0298ecc9e753480e008955bf0081688e45f03a89 /create/postgresql/schema.sql
parent46f4daf879cb71b022874fc3b6551d97d400fe1b (diff)
downloadzabbix-e44191a6fe4a5a879b8c5badb6fda8d78853bec1.tar.gz
zabbix-e44191a6fe4a5a879b8c5badb6fda8d78853bec1.tar.xz
zabbix-e44191a6fe4a5a879b8c5badb6fda8d78853bec1.zip
- added new server parameter UnavailablePeriod (Alexei)
- dropped column hosts.network_errors (Alexei) - added column hosts.errors_from (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2604 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 21f1de6b..b925fbac 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -31,9 +31,9 @@ CREATE TABLE hosts (
port int4 DEFAULT '0' NOT NULL,
status int4 DEFAULT '0' NOT NULL,
disable_until int4 DEFAULT '0' NOT NULL,
- network_errors int4 DEFAULT '0' NOT NULL,
error varchar(128) DEFAULT '' NOT NULL,
available int4 DEFAULT '0' NOT NULL,
+ errors_from int4 DEFAULT '0' NOT NULL,
PRIMARY KEY (hostid)
);