1.在app/Providers/AppServiceProvider.php中设置字符串默认长度:(不进行这一步,执行php artisan migrate会报错,同时建立的表会有所缺失)php
use Illuminate\Support\Facades\Schema;public function boot(){ Schema:defaultStringLength(191);}2.在执行:php artisan migrate