friendica/util/convert_innodb.sql

5 lines
169 B
MySQL
Raw Normal View History

SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
2016-12-08 20:29:06 +01:00
WHERE engine = 'MyISAM' AND `table_schema` = 'friendica';