1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Fixed last poster name, dumped categories table.

git-svn-id: file:///svn/phpbb/trunk@2939 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud
2002-10-07 01:07:41 +00:00
parent cf0ac8d631
commit a5a63df36f
3 changed files with 2 additions and 16 deletions

View File

@@ -92,19 +92,6 @@ CREATE TABLE phpbb_banlist (
);
# --------------------------------------------------------
#
# Table structure for table 'phpbb_categories' <- DUMP THIS?
#
CREATE TABLE phpbb_categories (
cat_id mediumint(8) UNSIGNED NOT NULL auto_increment,
cat_title varchar(60),
cat_order mediumint(8) UNSIGNED NOT NULL,
PRIMARY KEY (cat_id),
KEY cat_order (cat_order)
);
# --------------------------------------------------------
#
# Table structure for table 'phpbb_config'
@@ -133,7 +120,6 @@ CREATE TABLE phpbb_disallow (
#
CREATE TABLE phpbb_forums (
forum_id smallint(5) UNSIGNED NOT NULL,
cat_id smallint(5) UNSIGNED NOT NULL,
parent_id smallint(5) UNSIGNED NOT NULL,
left_id smallint(5) UNSIGNED NOT NULL,
right_id smallint(5) UNSIGNED NOT NULL,