geraete/prisma/schema.prisma
2025-11-14 10:13:37 +01:00

16 lines
433 B
Plaintext

// 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"
output = "../app/generated/prisma"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}