Skip to content

Commit

Permalink
Merge pull request #45 from GustavoCesarSantos/prisma
Browse files Browse the repository at this point in the history
Prisma
  • Loading branch information
GustavoCesarSantos authored Jun 9, 2022
2 parents 9771077 + 28cb2f4 commit 80d2183
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
previewFeatures = ["referentialIntegrity"]
}

datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
provider = "mysql"
url = env("DATABASE_URL")
referentialIntegrity = "prisma"
}

model ShortUrls {
Expand Down

0 comments on commit 80d2183

Please sign in to comment.