From 07ea4eb6c1927b132fc294271841066c11ab2955 Mon Sep 17 00:00:00 2001 From: osmiy Date: Tue, 21 Mar 2006 14:44:38 +0000 Subject: - developed remote commads execution on specific actions (Eugene) - added "URL" module for screens (Eugene) - fix some bugs - clean code git-svn-id: svn://svn.zabbix.com/trunk@2703 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 2 ++ 1 file changed, 2 insertions(+) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 09313b8d..41135ace 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -217,6 +217,7 @@ CREATE TABLE actions ( source int2 DEFAULT '0' NOT NULL, actiontype int2 DEFAULT '0' NOT NULL, status int2 DEFAULT '0' NOT NULL, + scripts text DEFAULT '' NOT NULL, PRIMARY KEY (actionid) -- depends on scope. Could be hostid or 0. -- FOREIGN KEY (triggerid) REFERENCES triggers @@ -616,6 +617,7 @@ CREATE TABLE screens_items ( valign int2 DEFAULT '0' NOT NULL, halign int2 DEFAULT '0' NOT NULL, style int4 DEFAULT '0' NOT NULL, + url varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (screenitemid) ); -- cgit