sanity checking, do not duplicate responses

This commit is contained in:
2025-07-05 03:58:50 +00:00
parent ea5e783ee5
commit b8f6023029
5 changed files with 85 additions and 7 deletions

View File

@ -14,11 +14,12 @@ datasource db {
model Response {
id Int @id @default(autoincrement())
pleromaNotificationId String @default("null")
to String
request String?
response String?
to String @default("null")
request String @default("null")
response String @default("null")
createdAt DateTime @default(now())
processedAt DateTime?
isProcessing Boolean @default(true)
}
model User {