fix(radioogy): store patient data of unknown order

This commit is contained in:
avicenan
2026-06-01 21:59:37 +09:00
parent 7fba2da7d7
commit 3cc08c863b

View File

@ -68,6 +68,15 @@ export class Radiology {
@Column({ nullable: true, type: "text" })
order_number: string;
@Column({ nullable: true, type: "text" })
patient_name: string;
@Column({ nullable: true, type: "date" })
patient_birth_date: Date;
@Column({ nullable: true, type: "varchar" })
patient_gender: string;
@Column()
@CreateDateColumn()
created_at: Date;