I try to run the following query
SELECT * FROM complains WHERE match(title, description) against('+lorem' IN BOOLEAN MODE)
Table complains has two FULLTEXT indexes. title and description but I still get this error from MySQL
Error Code: 1191. Can't find FULLTEXT index matching the column list
However I can run the query for each row on its own
SELECT * FROM complains WHERE match(description) against('+lorem' IN BOOLEAN MODE)
SELECT * FROM complains WHERE match(title) against('+lorem' IN BOOLEAN MODE)
This works fine. What I am missing?