From: Tobias Diekershoff Date: Fri, 9 Dec 2016 15:43:40 +0000 (+0100) Subject: use %placeholder% instead of Friendica X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a564e31451238cc66efc90d7a4f9c79c0317514f;p=friendica.git use %placeholder% instead of Friendica --- diff --git a/util/convert_innodb.sql b/util/convert_innodb.sql index bcc87222af..6a2774aa44 100644 --- a/util/convert_innodb.sql +++ b/util/convert_innodb.sql @@ -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%';