12 lines
302 B
SQL
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")
|
|
);
|