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.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index b170fad0..5ca0d532 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -1,6 +1,18 @@
\connect zabbix
--
+-- Table structure for table 'help'
+--
+
+CREATE TABLE help (
+ helpid serial,
+ topic varchar(128) DEFAULT '' NOT NULL,
+ description text DEFAULT '' NOT NULL,
+ PRIMARY KEY (helpid)
+);
+
+
+--
-- Table structure for table 'hosts'
--