Merge pull request #18 from judsonjuniorr/v2-is-on-whatsapp-cache

V2 is on whatsapp cache
This commit is contained in:
Judson Junior
2024-08-30 10:38:55 -03:00
committed by GitHub
8 changed files with 191 additions and 7 deletions

View File

@@ -673,3 +673,13 @@ model FlowiseSetting {
@@map("flowise_settings")
}
model IsOnWhatsapp {
id String @id @default(cuid())
remoteJid String @unique @map("remote_jid") @db.VarChar(100)
jidOptions String @map("jid_options")
createdAt DateTime @default(now()) @map("created_at") @db.Timestamp
updatedAt DateTime @updatedAt @map("updated_at") @db.Timestamp
@@map("is_on_whatsapp")
}