How to change the database engine of a MySQL database table from MyISAM to InnoDB?

HostStud

Administrator
Staff member
You can run following SQL query in SSH or PhpMyAdmin :

ALTER TABLE tablename ENGINE = InnoDB;
 
Top