This commit is contained in:
Judson Cairo 2024-08-14 17:50:11 -03:00
parent 1059c92583
commit 448aefb989
2 changed files with 3 additions and 3 deletions

View File

@ -156,7 +156,7 @@ model Message {
webhookUrl String? @db.VarChar(500) webhookUrl String? @db.VarChar(500)
sessionId String? sessionId String?
sessions IntegrationSession? @relation(fields: [sessionId], references: [id]) session IntegrationSession? @relation(fields: [sessionId], references: [id])
} }
model MessageUpdate { model MessageUpdate {

View File

@ -88,7 +88,7 @@ model Instance {
Sqs Sqs? Sqs Sqs?
Websocket Websocket? Websocket Websocket?
Typebot Typebot[] Typebot Typebot[]
sessions Session? Session Session?
MessageUpdate MessageUpdate[] MessageUpdate MessageUpdate[]
TypebotSetting TypebotSetting? TypebotSetting TypebotSetting?
Media Media[] Media Media[]
@ -155,7 +155,7 @@ model Message {
webhookUrl String? @db.VarChar(500) webhookUrl String? @db.VarChar(500)
sessionId String? sessionId String?
sessions IntegrationSession? @relation(fields: [sessionId], references: [id]) session IntegrationSession? @relation(fields: [sessionId], references: [id])
} }
model MessageUpdate { model MessageUpdate {