id(); $table->unsignedBigInteger('patient_id'); $table->unsignedBigInteger('doctor_id'); $table->date('consultation_date'); $table->time('consultation_time'); $table->string('location'); $table->string('consultation_status')->default('pending'); $table->timestamps(); $table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade'); $table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('consultations'); } };