Prisma init

This commit is contained in:
2021-09-13 16:41:54 -04:00
parent 2dadc9bcfa
commit 4fa808a91a
525 changed files with 34 additions and 19 deletions

11
prisma/schema.prisma Normal file
View File

@@ -0,0 +1,11 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}