Пофиксил миграцию

This commit is contained in:
Dhaverd 2024-10-28 01:05:25 +08:00
parent b02f61fac5
commit 4c9c374090

View File

@ -16,8 +16,8 @@ return new class extends Migration
$table->unsignedBigInteger('user_id');
$table->foreign('user_id')->references('id')->on('users');
$table->string('name', length: 256);
$table->double('price');
$table->string('url', length: 256);
$table->double('price')->nullable();
$table->string('url', length: 256)->nullable();
$table->timestamps();
});
}