diff options
Diffstat (limited to 'create/postgresql/schema.sql')
| -rw-r--r-- | create/postgresql/schema.sql | 2 |
1 files changed, 2 insertions, 0 deletions
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) ); |
