php Laravel [Illuminate\Database\QueryException]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel [Illuminate\Database\QueryException]相关的知识,希望对你有一定的参考价值。

https://laravel-news.com/laravel-5-4-key-too-long-error

this will fix this bullshit error:
[Illuminate\Database\QueryException]
  SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table `users` add uni
  que `users_email_unique`(`email`))
  



************ /app/Providers/AppServiceProvider.php  ***************

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;

// Include this bullshit
use Illuminate\Support\Facades\Schema;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        // https://laravel-news.com/laravel-5-4-key-too-long-error
        // Fix Laravel 5.4 bullshit change to utf8mb4:
        Schema::defaultStringLength(191) ;
    }

    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }
}

以上是关于php Laravel [Illuminate\Database\QueryException]的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 4.2 + Laravel Valet + PHP 7 = 需要 Mcrypt PHP 扩展

PHP笔记-laravel环境搭建(Laravel5.8.35版本)

《PHP框架Laravel学习》系列分享专栏

php [Laravel - 自定义错误消息] Laravel 5.4其他登录条件 - 添加自定义错误消息。 #All #Script #Laravel #Php

Aws-sdk-php-laravel 在 laravel 5.2 中得到 500 错误

快速入门最流行的 PHP 开发框架 Laravel