Do you have other migration?
Oct 19, 2022
13
Level 6
PDOException::("SQLSTATE[HY000]: General error: 1005 Can't create table `borujerd_amintamir`.`blogs` (errno: 121 "Duplicate key on write or u pdate")")
How to solve it?
public function up()
{
Schema::create('blogs', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->nullable()->constrained()->cascadeOnDelete();
$table->string('title');
$table->string('slug');
$table->string('link');
$table->string('image')->nullable();
$table->text('body');
$table->string('keywords');
$table->string('meta_description');
$table->timestamps();
});
}
Please or to participate in this conversation.