aboutsummaryrefslogtreecommitdiffstats
path: root/db.py
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-18 16:36:14 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-18 16:36:14 +0100
commitcd12c8e26b6713bf174076dc288b610f890a0588 (patch)
tree9033ca3f6625bd89a3afea8c7e0efcccba5d36d7 /db.py
parent3a867e3b0c966f84d607fc0ceafb2fdee893ed5d (diff)
downloadEgoMetrics-cd12c8e26b6713bf174076dc288b610f890a0588.tar.gz
EgoMetrics-cd12c8e26b6713bf174076dc288b610f890a0588.zip
Remove note field from weight logging
Diffstat (limited to 'db.py')
-rw-r--r--db.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/db.py b/db.py
index a7be976..390bb5d 100644
--- a/db.py
+++ b/db.py
@@ -63,8 +63,7 @@ CREATE INDEX IF NOT EXISTS idx_workout_template_exercises_template
CREATE TABLE IF NOT EXISTS weight_logs (
id INTEGER PRIMARY KEY AUTOINCREMENT,
date_time TEXT NOT NULL,
- weight REAL NOT NULL,
- note TEXT
+ weight REAL NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_weight_logs_date