diff --git a/src/entity/emr/emr_prescription.ts b/src/entity/emr/emr_prescription.ts index 50e2936..d675615 100644 --- a/src/entity/emr/emr_prescription.ts +++ b/src/entity/emr/emr_prescription.ts @@ -48,6 +48,9 @@ export class EmrPrescription { @OneToMany(() => EmrPrescriptionItem, (item) => item.prescription, { cascade: true }) items: EmrPrescriptionItem[]; + @Column({ type: "boolean", default: false }) + is_ordered: boolean; + @Column() @CreateDateColumn() created_at: Date;