Updated Filament Model

This commit is contained in:
2025-03-15 19:50:53 +01:00
parent d925df623a
commit e9b18c94fc
3 changed files with 14 additions and 31 deletions
@@ -22,6 +22,13 @@ return new class extends Migration
$table->string('weight')->required();
$table->string('diameter')->required();
$table->string('price')->nullable();
$table->string('finish')->nullable();
$table->string('image')->nullable();
$table->integer('stock')->default(0);
$table->integer('temp_min')->nullable();
$table->integer('temp_max')->nullable();
$table->integer('buildplate_id')->nullable();
$table->integer('extruder_id')->nullable();
});
}