I use PHPMyAdmin. I have to convert an InnoDB table to a MyISAM table. I then have to add a FULLTEXT index to two of the table's columns. Is this how I should do it? Backup table by exporting its contents. Go to "Relation view" and drop foreign key constraints. ALTER TABLE `table_name` ENGINE = MyISAM; ALTER TABLE `table_name` ADD FULLTEXT index_name (col1, col2); Is that it? Is there anything else that I should do? Will any of my site's PHP need changing?