#8 add view and api to track activities
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
|
||||
create table person (id integer not null primary key, name text);
|
||||
|
||||
insert into person (id, name)
|
||||
values (1, 'John');
|
||||
CREATE TABLE workout (
|
||||
user_id INTEGER NOT NULL,
|
||||
date TEXT NOT NULL,
|
||||
type TEXT NOT NULL,
|
||||
sets INTEGER NOT NULL,
|
||||
reps INTEGER NOT NULL
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user