Updated migrations

This commit is contained in:
2025-03-15 20:05:27 +01:00
parent e9b18c94fc
commit e653fbf5fa
8 changed files with 52 additions and 13 deletions
@@ -13,12 +13,12 @@ return new class extends Migration
{
Schema::create('manufacturers', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('name')->required();
$table->string('description')->nullable();
$table->string('website')->nullable();
$table->string('logo')->nullable();
$table->integer('filament_count')->default(0);
$table->timestamps();
});
}