Show a warning message in the admin panel when MyISAM is still in use

This commit is contained in:
Tobias Diekershoff 2016-11-20 09:50:14 +01:00
commit 7aaaa0a3c7
4 changed files with 28 additions and 1 deletions

4
util/convert_innodb.sql Normal file
View file

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