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 a895fd44..65988baf 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -811,4 +811,16 @@ CREATE TABLE items_applications (
FOREIGN KEY (itemid) REFERENCES items
);
+--
+-- Table structure for table 'help_items'
+--
+
+CREATE TABLE help_items (
+ itemtype int4 DEFAULT '0' NOT NULL,
+ key_ varchar(64) DEFAULT '' NOT NULL,
+ description varchar(255) DEFAULT '' NOT NULL,
+ PRIMARY KEY (itemtype, key_)
+);
+
+
VACUUM ANALYZE;