I use Lumen 5.6 and mysql. when i type \"php artisan migrate\" following error occur:
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was t
You need couple of things to do. I also faced this issue and fixed it by following these two steps
Go to app.php in bootstrap directory and uncomment or modify this line.
// $app->register(App\Providers\AppServiceProvider::class);
Now you need to define boot()
function in AppServiceProvider
file
public function boot()
{
Schema::defaultStringLength(191);
}
Then you are good to go!