From f42c51db3ba02f60feab25db34c250289b482507 Mon Sep 17 00:00:00 2001 From: xCyanGrizzly Date: Tue, 3 Mar 2026 21:45:05 +0100 Subject: [PATCH] fix: remove url from schema datasource (Prisma 7.x) Prisma 7.x no longer supports 'url' in the schema datasource block. The URL is provided exclusively via prisma.config.ts. --- prisma/schema.prisma | 1 - 1 file changed, 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index ddd8874..383f5f1 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -4,7 +4,6 @@ generator client { datasource db { provider = "postgresql" - url = env("DATABASE_URL") } // ───────────────────────────────────────