By default the laravel migrations table is using MYIsam engine. I have changed engine in config/database.php to InnoDB and all my other tables except migrations uses InnoDB
Asked
Active
Viewed 872 times
1 Answers
0
I've verified it now in my app, and all tables have InnoDB storage engine (including migrations
table). Backup your database, remove migrations
and see if it will be created now with InnoDB engine

Marcin Nabiałek
- 109,655
- 42
- 258
- 291
-
Your right; I did migrate:refresh and didn’t drop and create – Chris Muench Sep 28 '18 at 21:43