id(); $table->string('nombre'); $table->string('path'); $table->string('tipo'); $table->foreignId('taxi_id')->constrained('taxis')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('documentos'); } };