Creating an index MySQL
After I have added the FULLTEXT index, how do I keep it up to date?
Added it this way : ALTER TABLE search_index ADD FULLTEXT(si_fulltext)
Tried to update it like this :
ALTER TABLE search_index MODIFY FULLTEXT(si_fulltext)
ALTER TABLE search_index CHANGE FULLTEXT(si_fulltext)
Thanks, Joe