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