From 2df01e808f9caf6847dbab29214135b532ea82b0 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Fri, 22 Mar 2002 19:05:33 +0000 Subject: - parameter Server can consist of list of Zabbix servers (Alexei) - SO_LINGER is default socket option for zabbix_sender (Alexei) - added support of NoTimeWait for zabbix_trapperd (Alexei) - fixed schema for PostgreSQL, column disable_until (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@340 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 51ea19ce..fae6aacf 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -11,7 +11,7 @@ CREATE TABLE hosts ( ip varchar(15) DEFAULT '127.0.0.1' NOT NULL, port int4 DEFAULT '0' NOT NULL, status int4 DEFAULT '0' NOT NULL, - disabled_until int4 DEFAULT '0' NOT NULL, + disable_until int4 DEFAULT '0' NOT NULL, PRIMARY KEY (hostid) ); -- cgit