add sql script for diagnose and procedure src

This commit is contained in:
dpurbosakti
2025-08-25 17:31:16 +07:00
parent f06286cbc6
commit d76c5de6df
4 changed files with 43 additions and 1 deletions
@@ -0,0 +1,12 @@
-- Create "PharmacyCompany" table
CREATE TABLE "public"."PharmacyCompany" (
"Id" bigserial NOT NULL,
"CreatedAt" timestamptz NULL,
"UpdatedAt" timestamptz NULL,
"DeletedAt" timestamptz NULL,
"Code" character varying(20) NULL,
"Name" character varying(100) NULL,
"Regency_Code" character varying(4) NULL,
PRIMARY KEY ("Id"),
CONSTRAINT "uni_PharmacyCompany_Code" UNIQUE ("Code")
);