initial commit

This commit is contained in:
2025-06-28 23:01:32 -04:00
commit 9e4959af27
6 changed files with 521 additions and 0 deletions

16
prisma/schema.prisma Normal file
View File

@ -0,0 +1,16 @@
// 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 {
}