aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-03-31 04:39:51 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-03-31 04:39:51 +0000
commit57ed8f8f733a1b565adbab0f457fd17763fdcdab (patch)
treedb6942d6b7ff30c061e76e0ee6683ecfe62c3886
parentefcb1279f06d1016c25fae516158abdb895981ee (diff)
downloadforums-57ed8f8f733a1b565adbab0f457fd17763fdcdab.tar
forums-57ed8f8f733a1b565adbab0f457fd17763fdcdab.tar.gz
forums-57ed8f8f733a1b565adbab0f457fd17763fdcdab.tar.bz2
forums-57ed8f8f733a1b565adbab0f457fd17763fdcdab.tar.xz
forums-57ed8f8f733a1b565adbab0f457fd17763fdcdab.zip
#5375
git-svn-id: file:///svn/phpbb/trunk@7243 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index 32f56624e2..73e6bb0d10 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -1647,14 +1647,14 @@ function phpbb_check_username_collisions()
case 'mysql_40':
$create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv (
- user_id mediumint(8) UNSIGNED NOT NULL,
+ user_id mediumint(8) NOT NULL,
username_clean blob NOT NULL
)';
break;
case 'mysql_41':
$create_sql = 'CREATE TABLE ' . $table_prefix . 'userconv (
- user_id mediumint(8) UNSIGNED NOT NULL,
+ user_id mediumint(8) NOT NULL,
username_clean varchar(255) DEFAULT \'\' NOT NULL
) CHARACTER SET `utf8` COLLATE `utf8_bin`';
break;