Add /user/{userId}/goals

This commit is contained in:
2025-05-08 11:46:35 +02:00
parent 5a19fc041d
commit 7638d9d0af
4 changed files with 77 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ create table history
create table goals
(
id integer primary key,
user_id integer not null,
name text not null,
target integer not null,
progress integer not null,