diff --git a/src/entity/patient_guarantor.ts b/src/entity/patient_guarantor.ts index 9852713..a6b5977 100644 --- a/src/entity/patient_guarantor.ts +++ b/src/entity/patient_guarantor.ts @@ -45,16 +45,16 @@ export class PatientGuarantor { phone!: string; // Provinsi tempat tinggal penjamin pasien - @Column({ type: "text", nullable: false }) - province!: string; + @Column({ type: "text", nullable: true }) + province: string; // Kota tempat tinggal penjamin pasien - @Column({ type: "text", nullable: false }) - city!: string; + @Column({ type: "text", nullable: true }) + city: string; // Kode pos tempat tinggal penjamin pasien - @Column({ type: "text", nullable: false }) - zip_code!: string; + @Column({ type: "text", nullable: true }) + zip_code: string; // Nomor perjanjian atau kontrak @Column({ type: "text", nullable: false })