feat: add Prisma schema and dependencies for database integration
This commit is contained in:
parent
045d1d2e30
commit
b1a19fbe0c
3 changed files with 238 additions and 0 deletions
15
prisma/schema.prisma
Normal file
15
prisma/schema.prisma
Normal file
|
@ -0,0 +1,15 @@
|
|||
// This is your Prisma schema file,
|
||||
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
||||
|
||||
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
|
||||
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
|
||||
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
output = "../generated/prisma"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue