mirror of
https://github.com/friendica/friendica
synced 2025-01-11 01:24:43 +00:00
5 lines
135 B
MySQL
5 lines
135 B
MySQL
|
|
||
|
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
|
||
|
FROM information_schema.tables
|
||
|
WHERE engine = 'MyISAM';
|