Files
pleroma-ollama-bot/prisma/schema.prisma
2025-06-28 23:01:32 -04:00

17 lines
294 B
Plaintext

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
output = "../generated/prisma"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model Notification {
}