You also need to update the config/database.php file for mysql connections from ‘engine’ => null, to ‘engine’ => ‘InnoDB ’,
config/database.php
use Illuminate\Support\Str;
return [
‘default’ => env(‘DB_CONNECTION’, ‘mysql’),
‘connections’ => [
‘mysql’ => [
…
‘engine’ => ‘InnoDB’,
…
]
]
]