id(); $table->text('note')->nullable(); $table->text('note_type')->nullable(); $table->unsignedBigInteger('patient_id')->nullable(); $table->foreign('patient_id')->references('id')->on('patients'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { // } };