Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.
Marcos Costa edited this page May 16, 2021 · 2 revisions

workaround if type providers conflict with entity framework

CREATE TABLE public."Inspections" (
    retail text NOT NULL,
    snow_rate integer NOT NULL,
    lighting_rate integer NOT NULL,
    rooftop_rate integer NOT NULL
);

ALTER TABLE public."Inspections" OWNER TO dmg;
ALTER TABLE ONLY public."Inspections"
    ADD CONSTRAINT "PK_Inspections" PRIMARY KEY (retail);
Clone this wiki locally