Skip to content

Commit

Permalink
add direct url
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeshkhadka committed Jun 30, 2024
1 parent 093ba6c commit 48c9422
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ generator client {
}

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


model User {
id String @id @default(uuid())
email String
Expand Down

0 comments on commit 48c9422

Please sign in to comment.