1
1
Fork 0

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

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';