Call to undefined method Illuminate\Database\Schema\MySqlBuilder::defaultStringLength()

后端 未结 5 642
[愿得一人]
[愿得一人] 2021-01-25 09:43

Firstly i was getting an error in

php artisan migrate

as

SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key w

5条回答
  •  执念已碎
    2021-01-25 10:02

    1. Add use Illuminate\Support\Facades\Schema; to your AppServiceProvider.php file in App/Providers folder.

    2. Add Schema::defaultStringLength(191); to the boot function.

提交回复
热议问题