sanity checking, do not duplicate responses
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user