id(); $table->string('name'); $table->string('description')->nullable(); $table->foreignId('manufacturer_id')->constrained(); $table->string('diameter')->required(); $table->integer('temp_max')->required(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('extruders'); } };