Deprecated file removed

This commit is contained in:
Michael 2017-12-15 11:25:05 +00:00
parent afbfbde112
commit 1e0c46e8a3
1 changed files with 0 additions and 6 deletions

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%';