add code into several mcu src related

This commit is contained in:
dpurbosakti
2025-11-10 16:40:21 +07:00
parent 292494aef5
commit 698508603b
6 changed files with 61 additions and 46 deletions

No files matched your search

@@ -0,0 +1,8 @@
-- Modify "McuSrc" table
ALTER TABLE "public"."McuSrc" ALTER COLUMN "Code" SET NOT NULL, ADD COLUMN "Item_Code" text NULL;
-- Modify "McuSubSrc" table
ALTER TABLE "public"."McuSubSrc" ADD COLUMN "McuSrc_Code" text NULL;
-- Modify "MedicalActionSrc" table
ALTER TABLE "public"."MedicalActionSrc" ADD COLUMN "Item_Code" text NULL;
-- Modify "MedicalActionSrcItem" table
ALTER TABLE "public"."MedicalActionSrcItem" ADD COLUMN "MedicalActionSrc_Code" text NULL, ADD COLUMN "ProcedureSrc_Code" text NULL, ADD COLUMN "Item_Code" text NULL;