only convert tables in friendica DB

This commit is contained in:
Tobias Diekershoff 2016-12-08 20:29:06 +01:00
parent a4959626ad
commit f9b0beff8d
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
FROM information_schema.tables
WHERE engine = 'MyISAM';
WHERE engine = 'MyISAM' AND `table_schema` = 'friendica';