id(); $table->string('name'); // z.B. "OWL" oder "Rhein-Main" $table->string('slug')->unique(); // Für saubere URLs, z.B. "owl" $table->string('keyvisual_url')->nullable(); // Keyvisual-Bild des Hubs $table->string('emblem_url')->nullable(); // Wappen-URL des Hubs $table->boolean('is_active')->default(false); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('hubs'); } };