美文网首页
php artisan migrate时报错

php artisan migrate时报错

作者: 飞牛在天 | 来源:发表于2018-01-22 15:35 被阅读0次

    执行完php artisan make:auth,再执行php artisan migrate时,报错
    SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes,解决方法:
    在AppServiceProvider中

    use Illuminate\Support\Facades\Schema; //import Schema

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

    相关文章

      网友评论

          本文标题:php artisan migrate时报错

          本文链接:https://www.haomeiwen.com/subject/ygglaxtx.html