MeetUp/prisma/schema.prisma
SomeCodecat ebc546c409
Some checks failed
container-scan / Container Scan (pull_request) Successful in 4m35s
docker-build / docker (pull_request) Failing after 5m12s
feat: add Prisma schema and dependencies for database integration
2025-05-07 17:34:11 +02:00

15 lines
436 B
Text

// 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")
}