aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)';
}