Update schema.prisma

`shadowDatabaseUrl` is no longer required for Vercel Postgres and may cause issues when set to the same value as `directUrl`.
This commit is contained in:
Jon Harrell
2023-09-01 09:06:26 -04:00
committed by jake
parent a3a854b4ac
commit f6726b5926
-1
View File
@@ -7,7 +7,6 @@ datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("POSTGRES_URL_NON_POOLING")
shadowDatabaseUrl = env("POSTGRES_URL_NON_POOLING")
}
model hits {