From 1e0c46e8a35162ccd2346a69e4ce0f34fced15ad Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 15 Dec 2017 11:25:05 +0000 Subject: [PATCH] Deprecated file removed --- util/convert_innodb.sql | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 util/convert_innodb.sql diff --git a/util/convert_innodb.sql b/util/convert_innodb.sql deleted file mode 100644 index 7f3d99a4da..0000000000 --- a/util/convert_innodb.sql +++ /dev/null @@ -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%';