Skip to content

Commit

Permalink
feat(prisma): add support for directUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
SecondThundeR committed Mar 10, 2024
1 parent fcadc61 commit 5b5c79e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ generator client {
}

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

// Next Auth Models
Expand Down

0 comments on commit 5b5c79e

Please sign in to comment.