diff --git a/src/entity/emr/emr_internal_consultation.ts b/src/entity/emr/emr_internal_consultation.ts index 6fa49d2..d208a28 100644 --- a/src/entity/emr/emr_internal_consultation.ts +++ b/src/entity/emr/emr_internal_consultation.ts @@ -30,6 +30,15 @@ export class EmrInternalConsultation { @JoinColumn() patient: EmrPatient; + @Column({ nullable: true, type: "text" }) + patient_name: string; + + @Column({ nullable: true, type: "text" }) + patient_birth_date: string; + + @Column({ nullable: true, type: "text" }) + patient_gender: string; + @ManyToOne(() => Room, { onDelete: "CASCADE", nullable: true }) @JoinColumn() referring_room: Room;