wip: made some progress

This commit is contained in:
2025-09-04 18:35:12 -07:00
parent ad449e50a4
commit 359b22b979
17 changed files with 5334 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// 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
answerChannelId String
blockedUsers String[]
}