Update schema.prisma

fix pgbouncer to supavisor migration issue
This commit is contained in:
Spencer Tweedy 2024-01-15 12:49:12 -06:00 committed by GitHub
parent 784237bfab
commit 7a77c82ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ generator client {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL") // plain connection with no pgBouncer (used for push & migrations)
relationMode = "prisma"
}