Add Prisma example

This commit is contained in:
2022-05-01 17:00:38 +02:00
parent 8da44976e1
commit a7d197752f
5 changed files with 61 additions and 2 deletions

View File

@ -0,0 +1,13 @@
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model test {
key String @id
value String
}