id(); $table->string('name')->unique(); // Name des Herstellers (eindeutig) $table->text('description')->nullable(); // Beschreibung des Herstellers $table->string('website')->nullable(); // Website des Herstellers $table->string('country')->nullable(); // Land des Herstellers $table->timestamps(); // Index für schnelle Suche $table->index('name'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('manufacturers'); } };