-
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Remove schema name from the generated model name.
Example pgsql
CREATE TABLE "public"."activity" (
"id" int8 NOT NULL DEFAULT nextval('activity_id_seq'::regclass),
"userId" int4 NOT NULL,
"message" text NOT NULL,
"type" int4 NOT NULL,
"created_at" timestamptz NOT NULL DEFAULT now(),
PRIMARY KEY ("id")
);
Remove public
from generated Prisma schema.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working