friendica-github/util/convert_innodb.sql
2016-12-09 18:11:27 +01:00

6 lines
292 B
SQL

# script to convert tables from MyISAM to InnoDB
# change the %PLACEHOLDER% to the actual name of your Friendica DB
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
WHERE engine = 'MyISAM' AND `table_schema` = '%PLACEHOLDER%';