fix: återställ url i schema.prisma, ta bort ogiltig datasourceUrl från constructor

This commit is contained in:
Nils-Johan Gynther
2026-04-15 21:14:48 +02:00
parent d5cb8d27e0
commit 1844368cf8
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -9,8 +9,7 @@ export class PrismaService
private readonly logger = new Logger(PrismaService.name);
constructor() {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
super({ datasourceUrl: process.env.DATABASE_URL } as any);
super();
}
async onModuleInit() {