Laravel 5.4 在开启自带Auth后migrate报错

在执行完下面两条命令后报错
$ php artisan auth:make
$ php artisan auth:make

Laravel 5.4 在开启自带Auth后migrate报错_第1张图片
报错如上

最后解决办法,在app\Providers\AppServiceProviderboot方法里面加入入下代码:

public function boot() {
    Schema::defaultStringLength(191);
}

在前面引用下Schema

use Illuminate\Support\Facades\Schema;

还不清楚是为什么,只做记录,以后再研究。

你可能感兴趣的:(Laravel 5.4 在开启自带Auth后migrate报错)