mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 00:27:11 +01:00
Add usePreparedStatements option to datasource
This commit is contained in:
parent
777515f754
commit
7b3d7f0479
1 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ datasource db {
|
||||||
provider = "postgresql"
|
provider = "postgresql"
|
||||||
url = env("DATABASE_URL")
|
url = env("DATABASE_URL")
|
||||||
relationMode = "prisma"
|
relationMode = "prisma"
|
||||||
|
usePreparedStatements = false
|
||||||
}
|
}
|
||||||
|
|
||||||
model User {
|
model User {
|
||||||
|
|
@ -268,4 +269,4 @@ model Revenue {
|
||||||
@@index([websiteId, createdAt])
|
@@index([websiteId, createdAt])
|
||||||
@@index([websiteId, sessionId, createdAt])
|
@@index([websiteId, sessionId, createdAt])
|
||||||
@@map("revenue")
|
@@map("revenue")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue