fix: add cloudonix CDR handling (#140)

* feat: add cloudonix cdr

* fix: remove org check

---------

Co-authored-by: Sabiha Khan <sabihak89@gmail.com>
This commit is contained in:
Abhishek 2026-01-29 19:06:52 +05:30 committed by GitHub
parent 91911769b0
commit b1c982a52e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 179 additions and 10 deletions

View file

@ -372,6 +372,11 @@ class WorkflowRunModel(Base):
unique=True,
postgresql_where=text("public_access_token IS NOT NULL"),
),
Index(
"idx_workflow_runs_call_id",
text("(gathered_context->>'call_id')"),
postgresql_where=text("gathered_context->>'call_id' IS NOT NULL"),
),
)