Add usePreparedStatements option to datasource

This commit is contained in:
blackpirateapps 2025-11-02 15:35:33 +05:30 committed by GitHub
parent 777515f754
commit 7b3d7f0479
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,7 @@ datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
relationMode = "prisma"
usePreparedStatements = false
}
model User {
@ -268,4 +269,4 @@ model Revenue {
@@index([websiteId, createdAt])
@@index([websiteId, sessionId, createdAt])
@@map("revenue")
}
}