-
-
Save NorthTexasCreative/8a6ccc74784279101ab8dd7f252aba80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT CONCAT( 'ALTER TABLE ', TABLE_NAME, ' ENGINE=InnoDB;' ) | |
| FROM INFORMATION_SCHEMA.TABLES | |
| WHERE ENGINE = 'MyISAM' | |
| AND table_schema = 'database-name-here'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment