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