fix: update PrismaService constructor to include datasourceUrl configuration

This commit is contained in:
Nils-Johan Gynther
2026-04-15 21:07:00 +02:00
parent 67aa89ba7e
commit 649f76fa72
+1 -1
View File
@@ -9,7 +9,7 @@ export class PrismaService
private readonly logger = new Logger(PrismaService.name); private readonly logger = new Logger(PrismaService.name);
constructor() { constructor() {
super(); super({ datasourceUrl: process.env.DATABASE_URL });
} }
async onModuleInit() { async onModuleInit() {