Terminal выдает мне такую ошибку при попытки создания таблицы
Моя миграция:
class CreateBooksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('books', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('description');
$table->string('author');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('books');
}
}
Моя модель Book:
class Book extends Model
{
protected $table = 'books';
protected $fillable = [
'title',
'description',
'author'
];
}
Где я допустил ошибку?