feat/prescription: updated entities

This commit is contained in:
2025-11-13 17:27:59 +07:00
parent 96d4f55925
commit a552e51fa7
5 changed files with 93 additions and 1 deletions

No files matched your search

@@ -0,0 +1,11 @@
-- Create "MedicineForm" table
CREATE TABLE "public"."MedicineForm" (
"Id" serial NOT NULL,
"CreatedAt" timestamptz NULL,
"UpdatedAt" timestamptz NULL,
"DeletedAt" timestamptz NULL,
"Code" character varying(20) NULL,
"Name" character varying(50) NULL,
PRIMARY KEY ("Id"),
CONSTRAINT "uni_MedicineForm_Code" UNIQUE ("Code")
);