]> git.mxchange.org Git - friendica.git/commitdiff
use %placeholder% instead of Friendica
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 9 Dec 2016 15:43:40 +0000 (16:43 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 9 Dec 2016 15:43:40 +0000 (16:43 +0100)
util/convert_innodb.sql

index bcc87222af75438d3c2ac400fa03c95a8026312d..6a2774aa44b0fd9308c36a14abef853982e319c1 100644 (file)
@@ -1,4 +1,6 @@
-
+#  script to convert tables from MyISAM to InnoDB
+#  change the %PLACEHOLDER% to ythe 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` = 'friendica';
+WHERE engine = 'MyISAM' AND  `table_schema` = '%PLACEHOLDER%';