1.在app/Providers/AppServiceProvider.php中設置字符串默認長度:(不進行這一步,執行php artisan migrate會報錯,同時建立的表會有所缺失)php
use Illuminate\Support\Facades\Schema;public function boot(){ Schema:defaultStringLength(191);}2.在執行:php artisan migrate