Files
sorielle/prisma/schema.prisma
T
naomi fe70dcc49f
Node.js CI / Lint and Test (pull_request) Successful in 46s
feat: initial prototype
2025-07-19 19:46:36 -07:00

19 lines
392 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"
}
datasource db {
provider = "mongodb"
url = env("MONGO_URI")
}
model Vents {
id String @id @default(auto()) @map("_id") @db.ObjectId
serverId String @unique
channelId String
ttl Int
}