summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql15
1 files changed, 15 insertions, 0 deletions
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
@@ -508,6 +508,21 @@ CREATE TABLE screens_items (
);
--
+-- 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'
--