friendica/util/convert_innodb.sql

5 lines
135 B
MySQL
Raw Normal View History

SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
WHERE engine = 'MyISAM';