aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-04-18 21:11:17 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-04-18 21:11:17 +0000
commit9a7e40d14261509574a9a9b1c98de295b4de4314 (patch)
treeec0ffa508989070eef2e7b1ec5b79cee64be8d3e /phpBB
parent5846164563f15ed0d44637cb092eed4091387e28 (diff)
downloadforums-9a7e40d14261509574a9a9b1c98de295b4de4314.tar
forums-9a7e40d14261509574a9a9b1c98de295b4de4314.tar.gz
forums-9a7e40d14261509574a9a9b1c98de295b4de4314.tar.bz2
forums-9a7e40d14261509574a9a9b1c98de295b4de4314.tar.xz
forums-9a7e40d14261509574a9a9b1c98de295b4de4314.zip
forgot to make the actual change :P
git-svn-id: file:///svn/phpbb/trunk@7372 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index e4d1a37aa8..a106f40abf 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -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)';
}