【发布时间】:2019-09-28 20:51:25
【问题描述】:
我正在尝试通过命令迁移 Laravel5.8 中的 MySQL 表
$ php artisan migrate
我收到了这个错误
In Facade.php line 237:
Call to undefined method
Illuminate\Database\Schema\MySqlBuilder::defaultStringLenght()
我已经在 AppServiceProvider.php 文件中设置了
use Illuminate\Support\Facades\Schema;
defaultStringLenght(191); // boot() method
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->mediumText('body');
$table->timestamps();
});
【问题讨论】:
标签: laravel laravel-artisan migrate