id(); $table->string('nom'); $table->text('description')->nullable(); $table->string('adresse_postale')->nullable(); $table->string('url')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('depots'); } };