Skip to content

Commit

Permalink
Merge pull request #253 from credebl/fix-main-connection-pool
Browse files Browse the repository at this point in the history
fix: connection pool of prisma postgres
  • Loading branch information
KulkarniShashank authored Nov 10, 2023
2 parents 7613ced + c6b708f commit 31d7e77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/prisma-service/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ generator client {

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
url = env("POOL_DATABASE_URL")
directUrl = env("DATABASE_URL")
}

model user {
Expand Down

0 comments on commit 31d7e77

Please sign in to comment.