From bf59ed049d097f1a99b6fe805a7cba90278b08c9 Mon Sep 17 00:00:00 2001 From: Soham Chari Date: Sun, 14 Dec 2025 18:24:14 +0530 Subject: [PATCH] Added call_recording_url column to communication records --- db/final_db.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/final_db.sql b/db/final_db.sql index 2e96e96..b6954c0 100644 --- a/db/final_db.sql +++ b/db/final_db.sql @@ -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() );