From ccacb4ca973ed58f1392aef3365f838abdc1f012 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Fri, 20 Jun 2003 10:41:20 +0000 Subject: Updated DB patches. git-svn-id: svn://svn.zabbix.com/trunk@836 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'create/postgresql/schema.sql') diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql index 8619d9dd..12868c56 100644 --- a/create/postgresql/schema.sql +++ b/create/postgresql/schema.sql @@ -507,6 +507,21 @@ CREATE TABLE screens_items ( PRIMARY KEY (screenitemid) ); +-- +-- Table structure for table 'screens_graphs' +-- + +CREATE TABLE screens_graphs ( + screengraphid serial, + screenid int4 DEFAULT '0' NOT NULL, + itemid int4 DEFAULT '0' NOT NULL, + width int4 DEFAULT '320' NOT NULL, + height int4 DEFAULT '200' NOT NULL, + x int4 DEFAULT '0' NOT NULL, + y int4 DEFAULT '0' NOT NULL, + PRIMARY KEY (screengraphid) +); + -- -- Table structure for table 'stats' -- -- cgit