mysql2sqlite
mysql2sqlite copied to clipboard
Fix for when there is no "ENGINE" statement.
The Regex has been changed from
/ ENGINE| engine/
to
/ ENGINE| engine| \);/
This way, when the "ENGINE" keyword isn't present, it will still print out the closing ");" for the table create.
Tested on dumps with ENGINE and without, working.