feat(triage): add main_disease note

This commit is contained in:
avicenan
2026-06-01 15:05:41 +09:00
parent 418741684e
commit 7fba2da7d7

View File

@ -33,7 +33,6 @@ export class EmrRegistrationEmergency {
@JoinColumn() @JoinColumn()
room: Room; room: Room;
@ManyToOne(() => User, { onDelete: "CASCADE" }) @ManyToOne(() => User, { onDelete: "CASCADE" })
@JoinColumn() @JoinColumn()
user: User; user: User;
@ -163,6 +162,9 @@ export class EmrRegistrationEmergency {
@JoinColumn() @JoinColumn()
main_disease: MainDisease; main_disease: MainDisease;
@Column({ type: "text", nullable: true })
main_disease_note: string;
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "text" })
condition: string; condition: string;