php artisan make:migrate create_posts_table komudu ile migration oluşturdum
İçindekiler:
Schema::create('posts', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title');
$table->text('content');
$table->integer('author');
$table->timestamps();
});
php artisan migrate komutunu çalıştırdığımda aldığım hata
Ekran Görünütüsü
Acaba nerede hata yapıyorum ?