From 4ef5664510be8a9f5ca26fb63b58318768bdd97c Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 16 Dec 2024 17:45:36 -0700 Subject: [PATCH] Fix call logs --- migrations/008_reset_callLogs_table.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/008_reset_callLogs_table.sql diff --git a/migrations/008_reset_callLogs_table.sql b/migrations/008_reset_callLogs_table.sql new file mode 100644 index 0000000..3adef0e --- /dev/null +++ b/migrations/008_reset_callLogs_table.sql @@ -0,0 +1,2 @@ +-- Had to do this because we changed the timestamp format to full epoch, instead of / 1000 +DELETE FROM callLogs; \ No newline at end of file