From 3caf8639ef40a9cbb42c9dad28e1324d3dff17ed Mon Sep 17 00:00:00 2001 From: hugetoad Date: Thu, 25 May 2006 08:59:24 +0000 Subject: - dropped suport of delays between actions due to bad design (Alexei) - fixed incorrect handling of actions (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2904 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 88cf0a7d..18ce5039 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -207,10 +207,10 @@ CREATE INDEX auditlog_clock on auditlog (clock); CREATE TABLE actions ( actionid serial, userid int4 DEFAULT '0' NOT NULL, - delay int4 DEFAULT '0' NOT NULL, +-- delay int4 DEFAULT '0' NOT NULL, subject varchar(255) DEFAULT '' NOT NULL, message text DEFAULT '' NOT NULL, - nextcheck int4 DEFAULT '0' NOT NULL, +-- nextcheck int4 DEFAULT '0' NOT NULL, recipient int4 DEFAULT '0' NOT NULL, maxrepeats int4 DEFAULT '0' NOT NULL, repeatdelay int4 DEFAULT '600' NOT NULL, -- cgit