From ba6ac036b58f32da930af30c257cc43e51fc2e47 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Wed, 15 Apr 2026 21:03:24 +0200 Subject: [PATCH] fix: remove datasource configuration from PrismaService constructor --- backend/src/prisma/prisma.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/prisma/prisma.service.ts b/backend/src/prisma/prisma.service.ts index 2f8aa5a3..1bbe38d7 100644 --- a/backend/src/prisma/prisma.service.ts +++ b/backend/src/prisma/prisma.service.ts @@ -9,7 +9,7 @@ export class PrismaService private readonly logger = new Logger(PrismaService.name); constructor() { - super({ datasources: { db: { url: process.env.DATABASE_URL } } }); + super(); } async onModuleInit() {