id(); $table->string('nom')->unique(); $table->string('code_postal')->nullable(); // Optionnel mais utile $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('communes'); } };