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,7 +13,6 @@ return new class extends Migration
{
Schema::create('filaments', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('name')->required();
$table->string('description')->nullable();
$table->string('color_id')->required();
@@ -29,6 +28,7 @@ return new class extends Migration
$table->integer('temp_max')->nullable();
$table->integer('buildplate_id')->nullable();
$table->integer('extruder_id')->nullable();
$table->timestamps();
});
}