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