id(); $table->unsignedBigInteger('patient_id')->nullable(); $table->unsignedBigInteger('plan_id')->nullable(); $table->timestamps(); $table->foreign('patient_id')->references('id')->on('patients'); $table->foreign('plan_id')->references('id')->on('plans_v1'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('patient_plan'); } };