Hello, i'm getting error when i start my project

I'm use Postgresql with Prisma but i'm getting this error when i start my project: I tried connect postgresql with psql <link> and it's connected but i don't know why this error occured 😢 I'm tried npm update @prisma/client prisma but it didn't work My model file:
generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

model User {
id Int @id @default(autoincrement())
discordId String @unique
}
generator client {
provider = "prisma-client-js"
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

model User {
id Int @id @default(autoincrement())
discordId String @unique
}
@prisma/client: ^6.2.1 prisma: 6.2.1 Ubuntu 22.04 jammy
No description
3 Replies
Prisma AI Help
You're in no rush, so we'll let a dev step in. Enjoy your coffee, or drop into #ask-ai if you get antsy for a second opinion!
Nurul
Nurul7d ago
Hey 👋 When exactly do you get this error?
Just Nyde
Just NydeOP7d ago
I'm encountering this issue when starting the project, but I don't think the problem is related to Prisma, so I marked the topic as solved. When I test Prisma on its own, it works, but when I integrate it into my existing infrastructure, I get this error. I'll try rewriting all the code from scratch. Thank you for your attention ❤️

Did you find this page helpful?