feat: add Prisma schema and dependencies for database integration

This commit is contained in:
Maximilian Liebmann 2025-05-07 17:34:11 +02:00
parent 045d1d2e30
commit b1a19fbe0c
3 changed files with 238 additions and 0 deletions

15
prisma/schema.prisma Normal file
View 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")
}