Added call_recording_url column to communication records

This commit is contained in:
Soham Chari 2025-12-14 18:24:14 +05:30
parent cb1809cf33
commit bf59ed049d
1 changed files with 1 additions and 0 deletions

View File

@ -429,6 +429,7 @@ CREATE TABLE communication_records (
communication_type communication_type_enum NOT NULL,
call_status call_status_enum NOT NULL,
duration_seconds INT DEFAULT 0,
call_recording_url TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);