1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-31 11:39:37 +02:00

forgot to make the actual change :P

git-svn-id: file:///svn/phpbb/trunk@7372 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-04-18 21:11:17 +00:00
parent 5846164563
commit 9a7e40d142

View File

@ -697,7 +697,7 @@ class fulltext_mysql extends search_backend
}
else
{
$alter[] = 'MODIFY post_subject blob NOT NULL';
$alter[] = 'MODIFY post_subject text NOT NULL';
}
$alter[] = 'ADD FULLTEXT (post_subject)';
}
@ -710,7 +710,7 @@ class fulltext_mysql extends search_backend
}
else
{
$alter[] = 'MODIFY post_text blob NOT NULL';
$alter[] = 'MODIFY post_text mediumtext NOT NULL';
}
$alter[] = 'ADD FULLTEXT (post_text)';
}