X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Fconvert_innodb.sql;h=7f3d99a4da43f6932b493c0029e1db03fa58c3b8;hb=796efa119f100a2c2408f06963b1feb1b31a0757;hp=6b065f3b25067236972217ab6ae6a947700fcb6c;hpb=7ca4648ffdc5e2e0ec0024a89b0ea946045eefa0;p=friendica.git diff --git a/util/convert_innodb.sql b/util/convert_innodb.sql index 6b065f3b25..7f3d99a4da 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 the actual name of your Friendica DB + SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;') FROM information_schema.tables -WHERE engine = 'MyISAM'; +WHERE engine = 'MyISAM' AND `table_schema` = '%PLACEHOLDER%';