We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
shadowDatabaseUrl
1 parent a5271c4 commit ca3d5caCopy full SHA for ca3d5ca
prisma/schema.prisma
@@ -2,7 +2,6 @@ datasource db {
2
provider = "postgresql"
3
url = env("POSTGRES_PRISMA_URL") // uses connection pooling
4
directUrl = env("POSTGRES_URL_NON_POOLING") // uses a direct connection
5
- shadowDatabaseUrl = env("POSTGRES_URL_NON_POOLING") // used for migrations
6
}
7
8
generator client {
@@ -52,4 +51,4 @@ model VerificationToken {
52
51
expires DateTime
53
54
@@unique([identifier, token])
55
-}
+}
0 commit comments