-- Create "Installation" table CREATE TABLE "public"."Installation" ( "Id" serial NOT NULL, "CreatedAt" timestamptz NULL, "UpdatedAt" timestamptz NULL, "DeletedAt" timestamptz NULL, "Code" character varying(10) NULL, "Name" character varying(50) NULL, "EncounterClass_Code" character varying(10) NULL, PRIMARY KEY ("Id") );