Merge pull request #4067 from annando/removed-unused

Deprecated file removed
This commit is contained in:
Hypolite Petovan
2017-12-15 08:00:32 -05:00
committed by GitHub

View File

@@ -1,6 +0,0 @@
# 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%';