mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@7243 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
efcb1279f0
commit
57ed8f8f73
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue