From d168c63425e0be3795d83780b5c93f5495a3beca Mon Sep 17 00:00:00 2001 From: avicenan Date: Tue, 5 May 2026 15:53:33 +0700 Subject: [PATCH] fix date format in patient birth date --- src/entity/emr/emr_internal_consultation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entity/emr/emr_internal_consultation.ts b/src/entity/emr/emr_internal_consultation.ts index d208a28..18b506a 100644 --- a/src/entity/emr/emr_internal_consultation.ts +++ b/src/entity/emr/emr_internal_consultation.ts @@ -33,8 +33,8 @@ export class EmrInternalConsultation { @Column({ nullable: true, type: "text" }) patient_name: string; - @Column({ nullable: true, type: "text" }) - patient_birth_date: string; + @Column({ nullable: true, type: "date" }) + patient_birth_date: Date; @Column({ nullable: true, type: "text" }) patient_gender: string;