]> Nutra Git (v1) - nutratech/nt-sqlite.git/commitdiff
split repr to exc_type, exc_msg (2 columns)
authorShane Jaroch <chown_tee@proton.me>
Sun, 25 Feb 2024 22:24:25 +0000 (17:24 -0500)
committerShane Jaroch <chown_tee@proton.me>
Sun, 25 Feb 2024 22:24:25 +0000 (17:24 -0500)
sql/data/version.csv
sql/tables.sql

index 8561818cb59055fe2cc258b9e1f07dfc24d21b42..eb5797b01f7360ecee28ea57cafd1b0f13ad22f6 100644 (file)
@@ -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"
index 05001876cd511de3899a4ba80ab2512fff41bc5a..fd60abdd52146557f709c311fa3276861daaa02e 100644 (file)
@@ -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,