From e2849402136e7a78e5854b940b5b48effc879d52 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Sun, 6 Nov 2005 19:51:53 +0000 Subject: [PATCH] Bring the schema into line with the postgres one - this should deal with the errors caused by people who've decided to install mysql 5 and change it from the default settings to ultra-strict mode git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5292 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 5272750fed..a914764fca 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -194,7 +194,7 @@ CREATE TABLE phpbb_posts ( # CREATE TABLE phpbb_posts_text ( post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, - bbcode_uid char(10) NOT NULL, + bbcode_uid char(10) DEFAULT '' NOT NULL, post_subject char(60), post_text text, PRIMARY KEY (post_id)