From d3daa299c0404ecc6b006a8481c897f9d29cdf56 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Sun, 19 Nov 2023 19:14:32 -0500 Subject: [PATCH] Trying another sqlutil fix for inserting call state --- utilities/sqlutil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/sqlutil.js b/utilities/sqlutil.js index 5c43174..2b2672f 100644 --- a/utilities/sqlutil.js +++ b/utilities/sqlutil.js @@ -162,7 +162,7 @@ async function inCall(server_snowflake, channel_snowflake) { } async function registerNewCall(server_snowflake, channel_snowflake, call_start_time) { - return connection_pool.query("INSERT INTO call_states VALUES (?, ?, ?, NULL, 0, 0, 0)", [server_snowflake, channel_snowflake, call_start_time]).then(async ([rows, fields]) => { + return connection_pool.query("INSERT INTO call_states (server_snowflake, channel_snowflake, call_start_time, call_end_time, call_consolidated, call_transcribed, call_data_cleaned_up) VALUES (?, ?, ?, NULL, 0, 0, 0)", [server_snowflake, channel_snowflake, call_start_time]).then(async ([rows, fields]) => { if (rows.length == 0) { return -1; } else {