2016-12-09 16:43:40 +01:00
|
|
|
# script to convert tables from MyISAM to InnoDB
|
2016-12-09 18:11:27 +01:00
|
|
|
# change the %PLACEHOLDER% to the actual name of your Friendica DB
|
2016-12-09 16:43:40 +01:00
|
|
|
|
2016-11-20 09:50:14 +01:00
|
|
|
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
|
|
|
|
FROM information_schema.tables
|
2016-12-09 16:43:40 +01:00
|
|
|
WHERE engine = 'MyISAM' AND `table_schema` = '%PLACEHOLDER%';
|