Я пытаюсь перенести таблицу MySQL в команду Laravel5.8 через
$ php artisan migrate
Я получаю эту ошибку
In Facade.php line 237:
Call to undefined method
Illuminate\Database\Schema\MySqlBuilder::defaultStringLenght()
Я уже установил в файле AppServiceProvider.php
use Illuminate\Support\Facades\Schema;<br>
defaultStringLenght(191); // boot() method
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->mediumText('body');
$table->timestamps();
});