答案 0 :(得分:0)
为此编辑appServiceProvider
:
use Illuminate\Support\Facades\Schema;
public function boot()
{
Schema::defaultStringLength(191);
}
这是因为Laravel将其默认的数据库字符集更改为utf8mb4
(即支持表情符号)。
请参阅此处的Laravel文档中的外观(标题为:Index Lengths & MySQL / MariaDB)
:https://laravel.com/docs/master/migrations#creating-indexes