From 3c83d295e4d271ef368775777e19285121d47839 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sun, 25 Feb 2024 17:24:25 -0500 Subject: [PATCH] split repr to exc_type, exc_msg (2 columns) --- sql/data/version.csv | 1 + sql/tables.sql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sql/data/version.csv b/sql/data/version.csv index 8561818..eb5797b 100644 --- a/sql/data/version.csv +++ b/sql/data/version.csv @@ -6,3 +6,4 @@ id,version,created,notes 5,0.0.4,2021-06-17,"add custom foods tables (custom_foods, cf_dat)" 6,0.0.5,2022-07-11,remove biometrics 7,0.0.6,2022-07-14,"rename tables, start to organize for plugins" +8,0.0.7,2024-02-25,"add bug table" diff --git a/sql/tables.sql b/sql/tables.sql index 0500187..fd60abd 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -179,7 +179,8 @@ CREATE TABLE bug ( profile_id int, created int DEFAULT (strftime ('%s', 'now')), arguments text, - repr text, + exc_type text, + exc_msg text, stack text, -- e.g. OS, Python / Android version client_info json, -- 2.52.0