diff options
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index 173eb3b11..62c7ae03d 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -217,6 +217,20 @@ CREATE TABLE locales ( ); -- +-- Table structure for table 'menu' +-- + +CREATE TABLE menu ( + name varchar(255) NOT NULL default '', + link varchar(255) NOT NULL default '', + help TEXT default '', + title varchar(255) NOT NULL default '', + parent varchar(255) NOT NULL default '', + weight tinyint(4) DEFAULT '0' NOT NULL, + overview tinyint(1) DEFAULT '0' NOT NULL +); + +-- -- Table structure for table 'moderation_filters' -- |