From 649f76fa7297ba82690ff0cc04e0d7ffe6bb7787 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Wed, 15 Apr 2026 21:07:00 +0200 Subject: [PATCH] fix: update PrismaService constructor to include datasourceUrl configuration --- 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 1bbe38d7..00923ec7 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(); + super({ datasourceUrl: process.env.DATABASE_URL }); } async onModuleInit() {