feat/prescription: updated entities
This commit is contained in:
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")
|
||||
);
|
||||
Reference in New Issue
Block a user