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.
This commit is contained in:
2026-03-03 21:45:05 +01:00
parent ed5ff3db43
commit f42c51db3b

View File

@@ -4,7 +4,6 @@ generator client {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
// ───────────────────────────────────────