aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-05-06 21:00:08 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-05-06 21:00:08 +0000
commit75db5992742ee7b6a820a3e8f6033abf791d65b4 (patch)
tree819a783a4c123bba334f3547537a620b5e6454e5 /phpBB/install/schemas/mysql_schema.sql
parent6d3a8bd107bbd40d7afa3cc7adc5d5f46a3de63d (diff)
downloadforums-75db5992742ee7b6a820a3e8f6033abf791d65b4.tar
forums-75db5992742ee7b6a820a3e8f6033abf791d65b4.tar.gz
forums-75db5992742ee7b6a820a3e8f6033abf791d65b4.tar.bz2
forums-75db5992742ee7b6a820a3e8f6033abf791d65b4.tar.xz
forums-75db5992742ee7b6a820a3e8f6033abf791d65b4.zip
A minor change to the default icon_id, so that there is no icon if someone directly inserts into the db without specifying one
git-svn-id: file:///svn/phpbb/trunk@5892 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index a53b5b6fc7..1e02aea031 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -392,7 +392,7 @@ CREATE TABLE phpbb_posts (
topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
forum_id smallint(5) UNSIGNED DEFAULT '0' NOT NULL,
poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
- icon_id tinyint(4) UNSIGNED DEFAULT '1' NOT NULL,
+ icon_id tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
poster_ip varchar(40) NOT NULL,
post_time int(11) DEFAULT '0' NOT NULL,
post_approved tinyint(1) DEFAULT '1' NOT NULL,