add new column of condition and category in regis emergency

This commit is contained in:
avicenan
2026-05-26 01:24:51 +09:00
parent 4a6f9341cc
commit d71d9a8bdb

View File

@ -163,6 +163,12 @@ export class EmrRegistrationEmergency {
@JoinColumn()
main_disease: MainDisease;
@Column({ nullable: true, type: "text" })
condition: string;
@Column({ nullable: true, type: "text" })
category: string;
@Column()
@CreateDateColumn()
created_at: Date;