In sets_edit and the WorkoutExercise model, add a note: TextField to write down notes about the exercise.
It might be better to share the notes across all instances of the WorkoutExercise. This would mean one note per exercise, per user, and would need a new model (id, note, user, exercise)
In sets_edit and the
WorkoutExercise
model, add anote: TextField
to write down notes about the exercise.It might be better to share the notes across all instances of the
WorkoutExercise
. This would mean one note per exercise, per user, and would need a new model (id, note, user, exercise)