Add Column
Current Schema
CREATE TABLE voice_agent_widget_connections (
id INTEGER PRIMARY KEY AUTOINCREMENT,
voice_agent_config_id INTEGER NOT NULL,
connection_name TEXT NOT NULL,
api_key TEXT NOT NULL UNIQUE,
is_active INTEGER DEFAULT 1,
created_at TEXT NOT NULL,
updated_at TEXT,
FOREIGN KEY (voice_agent_config_id) REFERENCES voice_agent_configs(id) ON DELETE CASCADE
)