delete
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
-- Create "FileAttachment" table
|
||||
CREATE TABLE "public"."FileAttachment" (
|
||||
"Id" bigserial NOT NULL,
|
||||
"CreatedAt" timestamptz NULL,
|
||||
"UpdatedAt" timestamptz NULL,
|
||||
"DeletedAt" timestamptz NULL,
|
||||
"EntityType_Code" text NULL,
|
||||
"Ref_Id" bigint NULL,
|
||||
"Type_Code" text NULL,
|
||||
"Name" text NULL,
|
||||
"FilePath" text NULL,
|
||||
"FileName" text NULL,
|
||||
"Upload_Employee_Id" bigint NULL,
|
||||
PRIMARY KEY ("Id"),
|
||||
CONSTRAINT "fk_Encounter_FileAttachments" FOREIGN KEY ("Ref_Id") REFERENCES "public"."Encounter" ("Id") ON UPDATE NO ACTION ON DELETE NO ACTION,
|
||||
CONSTRAINT "fk_FileAttachment_Upload_Employee" FOREIGN KEY ("Upload_Employee_Id") REFERENCES "public"."Employee" ("Id") ON UPDATE NO ACTION ON DELETE NO ACTION
|
||||
);
|
||||
@@ -1,2 +0,0 @@
|
||||
-- Modify "FileAttachment" table
|
||||
ALTER TABLE "public"."FileAttachment" DROP CONSTRAINT "fk_Encounter_FileAttachments";
|
||||
Reference in New Issue
Block a user