diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:33:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:33:42 +0000 |
commit | d268783669922eab6d6b8a2fb4fffc1400af61dc (patch) | |
tree | 3927e6c63b10a6cd103e52e8ee22c2f671cc9b41 /database | |
parent | 20e8f9eba973a469095c7da2abe52b01a140f922 (diff) | |
download | brdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.gz brdo-d268783669922eab6d6b8a2fb4fffc1400af61dc.tar.bz2 |
- Small improvement to the admin menu based on feedback from Michael.
Diffstat (limited to 'database')
-rw-r--r-- | database/database.mysql | 3 | ||||
-rw-r--r-- | database/database.pgsql | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/database/database.mysql b/database/database.mysql index d84761b4b..5a75d15fc 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -229,8 +229,7 @@ CREATE TABLE menu ( 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 + weight tinyint(4) DEFAULT '0' NOT NULL ) TYPE=MyISAM; -- diff --git a/database/database.pgsql b/database/database.pgsql index 7c0c04c58..f564135d8 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -226,8 +226,7 @@ CREATE TABLE menu ( 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 + weight tinyint(4) DEFAULT '0' NOT NULL ); -- |