From 67872da4153c4337c5996d90a01fbe77ac880c89 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 22 Jan 2003 15:35:43 +0000 Subject: [PATCH] icon_id for posts table, note topic table topic_icon has changed to icon_id ... git-svn-id: file:///svn/phpbb/trunk@3353 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 499c6b490b..bb61c72361 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -323,6 +323,7 @@ CREATE TABLE phpbb_posts ( forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL, poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, attach_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, + icon_id tinyint(4) UNSIGNED DEFAULT '1' NOT NULL, poster_ip varchar(40) NOT NULL, post_time int(11) DEFAULT '0' NOT NULL, post_approved tinyint(1) DEFAULT '1' NOT NULL, @@ -607,11 +608,11 @@ CREATE TABLE phpbb_styles_imageset ( CREATE TABLE phpbb_topics ( topic_id mediumint(8) UNSIGNED NOT NULL auto_increment, forum_id smallint(8) UNSIGNED DEFAULT '0' NOT NULL, + icon_id tinyint(4) UNSIGNED DEFAULT '1' NOT NULL, topic_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, topic_title varchar(60) NOT NULL, topic_poster mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, topic_time int(11) DEFAULT '0' NOT NULL, - topic_icon tinyint(4) UNSIGNED DEFAULT '1' NOT NULL, topic_rating tinyint(4) DEFAULT '0' NOT NULL, topic_views mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, topic_replies mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,