aboutsummaryrefslogtreecommitdiffstats
path: root/db.py
diff options
context:
space:
mode:
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