laravel5.5首次使用php artisan migrate注意问题
作者:程序员11 时间:2022-03-17 人气:497 QQ交流群\邮箱:1003265987@qq.com
laravel5.5首次使用php artisan migrate注意问题
要展示的内容
1.在app/Providers/AppServiceProvider.php中设置字符串默认长度:(不进行这一步,执行php artisan migrate会报错,同时创建的表会有所缺失)
use IlluminateSupportFacadesSchema;
public function boot(){
Schema:defaultStringLength(191);
}
2.
在执行:php artisan migrate
温馨提示:
欢迎阅读本文章,觉得有用就多来支持一下,没有能帮到您,还有很多文章,希望有一天能帮到您。