feat: completed messagetochannel endpoint

This commit is contained in:
PrimarchPaul
2025-09-28 01:45:43 -04:00
parent db9a9a5d13
commit 6ef53fd964
7 changed files with 129 additions and 161 deletions

View File

@@ -103,7 +103,7 @@ model Message {
User User @relation(fields: [userId], references: [id])
userId String
deleted Boolean
text String
text String @db.VarChar(2000)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
replies Reply? @relation("MessageToReply")