mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-13 13:16:36 +02:00
oops, forgot a place ;-)
git-svn-id: file:///svn/phpbb/trunk@7146 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -354,7 +354,7 @@ foreach ($supported_dbms as $dbms)
|
|||||||
{
|
{
|
||||||
$orig_column_type = $column_data[0];
|
$orig_column_type = $column_data[0];
|
||||||
$column_type = $dbms_type_map[$dbms][$column_data[0]];
|
$column_type = $dbms_type_map[$dbms][$column_data[0]];
|
||||||
if ($column_type == 'text')
|
if ($column_type == 'text' || $column_type == 'blob')
|
||||||
{
|
{
|
||||||
$modded_array[$column_name] = $column_type;
|
$modded_array[$column_name] = $column_type;
|
||||||
}
|
}
|
||||||
|
@ -639,7 +639,7 @@ CREATE TABLE phpbb_search_wordlist (
|
|||||||
word_text blob NOT NULL,
|
word_text blob NOT NULL,
|
||||||
word_common tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
word_common tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
PRIMARY KEY (word_id),
|
PRIMARY KEY (word_id),
|
||||||
UNIQUE wrd_txt (word_text)
|
UNIQUE wrd_txt (word_text(255))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
@ -1037,7 +1037,7 @@ CREATE TABLE phpbb_users (
|
|||||||
KEY user_birthday (user_birthday),
|
KEY user_birthday (user_birthday),
|
||||||
KEY user_email_hash (user_email_hash),
|
KEY user_email_hash (user_email_hash),
|
||||||
KEY user_type (user_type),
|
KEY user_type (user_type),
|
||||||
UNIQUE username_clean (username_clean)
|
UNIQUE username_clean (username_clean(255))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user