This commit is contained in:
bipproduction
2025-10-21 16:56:18 +08:00
parent f50198ced9
commit 7d5bf004da
11 changed files with 151 additions and 35 deletions

View File

@@ -55,13 +55,15 @@ model WaHook {
}
model ChatFlows {
id String @id @default(cuid())
flows Json?
defaultFlow String?
defaultData Json?
active Boolean @default(true)
flowUrl String? @unique
flowToken String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
id String @id @default(cuid())
flows Json?
defaultFlow String?
defaultData Json?
active Boolean @default(true)
flowUrl String? @unique
flowToken String?
waPhoneNumberId String?
waToken String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}