add doctor_code into device-order,material-order,mcu-order

This commit is contained in:
dpurbosakti
2025-11-10 15:58:45 +07:00
parent 9d8f09c0de
commit 46a67ea359
6 changed files with 40 additions and 27 deletions
@@ -0,0 +1,8 @@
-- Modify "DeviceOrder" table
ALTER TABLE "public"."DeviceOrder" ADD COLUMN "Doctor_Code" text NULL;
-- Modify "Inpatient" table
ALTER TABLE "public"."Inpatient" ADD COLUMN "Infra_Code" character varying(10) NULL;
-- Modify "MaterialOrder" table
ALTER TABLE "public"."MaterialOrder" ADD COLUMN "Doctor_Code" text NULL;
-- Modify "McuOrder" table
ALTER TABLE "public"."McuOrder" ADD COLUMN "Doctor_Code" text NULL;