Files
veluna/prisma/schema.prisma
T
2025-09-27 16:53:02 -07:00

19 lines
464 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 Servers {
id String @id @default(auto()) @map("_id") @db.ObjectId
serverId String @unique
questionChannelId String @default("")
answerChannelId String @default("")
blockedUsers String[] @default([])
}