1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 07:47:34 +02:00

[ticket/11621] Swap columns of post_content index.

PHPBB3-11621
This commit is contained in:
Andreas Fischer
2013-10-10 23:59:05 +02:00
parent 353ac33d5c
commit 79928ebf43

View File

@@ -792,7 +792,7 @@ class fulltext_mysql extends \phpbb\search\base
$alter[] = 'MODIFY post_text mediumtext NOT NULL'; $alter[] = 'MODIFY post_text mediumtext NOT NULL';
} }
$alter[] = 'ADD FULLTEXT post_content (post_subject, post_text)'; $alter[] = 'ADD FULLTEXT post_content (post_text, post_subject)';
} }
if (sizeof($alter)) if (sizeof($alter))