1
1
Fork 0
friendica_2019-12_sharedHos.../util/convert_innodb.sql

5 lines
169 B
SQL

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