Files
2025-11-20 14:45:18 +07:00

12 lines
302 B
SQL

-- Create "Resume" table
CREATE TABLE "public"."Resume" (
"Id" bigserial NOT NULL,
"CreatedAt" timestamptz NULL,
"UpdatedAt" timestamptz NULL,
"DeletedAt" timestamptz NULL,
"Encounter_Id" bigint NOT NULL,
"Value" text NULL,
"FileUrl" character varying(1024) NULL,
PRIMARY KEY ("Id")
);