feat: Organization configuration and logo in chatwoot bot contact

This commit is contained in:
Davidson Gomes
2024-06-11 10:09:04 -03:00
parent a8937bd8b1
commit 31258a9b85
10 changed files with 24 additions and 18 deletions

View File

@@ -171,6 +171,8 @@ model Chatwoot {
importContacts Boolean? @default(false)
importMessages Boolean? @default(false)
daysLimitImportMessages Int? @db.Int
organization String? @db.VarChar(100)
logoUrl String? @db.VarChar(500)
createdAt DateTime? @default(now()) @db.Date
updatedAt DateTime @updatedAt @db.Date
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)