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
commit 7eb2aa2ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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%';