【发布时间】:2019-03-05 15:32:07
【问题描述】:
【问题讨论】:
-
请do not post images of code;请将代码文本放入问题中。
标签: database laravel-5 migration
【问题讨论】:
标签: database laravel-5 migration
将appServiceProvider 编辑为:
use Illuminate\Support\Facades\Schema;
public function boot()
{
Schema::defaultStringLength(191);
}
这是因为 Laravel 将其默认数据库字符集更改为 utf8mb4(即支持表情符号)。
在此处查看 Laravel 文档中的 soutiuon(标题下方:Index Lengths & MySQL / MariaDB):https://laravel.com/docs/master/migrations#creating-indexes
【讨论】: