mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-18 11:22:21 -06:00
Save is on whatsapp on the database
This commit is contained in:
@@ -574,3 +574,13 @@ model FlowiseSetting {
|
||||
Instance Instance @relation(fields: [instanceId], references: [id], onDelete: Cascade)
|
||||
instanceId String @unique
|
||||
}
|
||||
|
||||
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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user