Show a warning message in the admin panel when MyISAM is still in use
This commit is contained in:
parent
67c1a20ed0
commit
7aaaa0a3c7
4 changed files with 28 additions and 1 deletions
4
util/convert_innodb.sql
Normal file
4
util/convert_innodb.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;')
|
||||
FROM information_schema.tables
|
||||
WHERE engine = 'MyISAM';
|
Loading…
Add table
Add a link
Reference in a new issue