fix date format in patient birth date

This commit is contained in:
avicenan
2026-05-05 15:53:33 +07:00
parent 0cd45fe5aa
commit d168c63425

View File

@ -33,8 +33,8 @@ export class EmrInternalConsultation {
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "text" })
patient_name: string; patient_name: string;
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "date" })
patient_birth_date: string; patient_birth_date: Date;
@Column({ nullable: true, type: "text" }) @Column({ nullable: true, type: "text" })
patient_gender: string; patient_gender: string;