10 lines
231 B
SQL
10 lines
231 B
SQL
-- Create "Patient" table
|
|
CREATE TABLE "public"."Patient" (
|
|
"ResourceType" text NULL,
|
|
"Active" boolean NULL,
|
|
"Gender" text NULL,
|
|
"BirthDate" text NULL,
|
|
"DeceasedBool" boolean NULL,
|
|
"MultipleBirthInteger" bigint NULL
|
|
);
|