From f9d1dc16f4be4db410cb9aeced999aeb68d35409 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Thu, 18 May 2006 10:27:57 +0000 Subject: - new table 'help_items' (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2853 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- create/postgresql/schema.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'create/postgresql/schema.sql') 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; -- cgit