feat/prescription: relating MedicineForm

This commit is contained in:
2025-11-13 19:07:04 +07:00
parent a552e51fa7
commit 50b2c7b781
3 changed files with 8 additions and 2 deletions

No files matched your search

@@ -0,0 +1,2 @@
-- Modify "Medicine" table
ALTER TABLE "public"."Medicine" ADD COLUMN "MedicineForm_Code" character varying(20) NULL, ADD CONSTRAINT "fk_Medicine_MedicineForm" FOREIGN KEY ("MedicineForm_Code") REFERENCES "public"."MedicineForm" ("Code") ON UPDATE NO ACTION ON DELETE NO ACTION;