fix(radioogy): store patient data of unknown order
This commit is contained in:
@ -68,6 +68,15 @@ export class Radiology {
|
|||||||
@Column({ nullable: true, type: "text" })
|
@Column({ nullable: true, type: "text" })
|
||||||
order_number: string;
|
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()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
|
|||||||
Reference in New Issue
Block a user