I am developing a Flask app which I can use to track my workouts. When modelling the data, I am hesitating between using a relational or non-relational database. What would be a more suitable design? Typically, the data I want to model looks as follows:
Workout: Time started, Time end, [Exercise]
Exercise: [Exercise Name, [Sets]]
Set: Weight, Repetitions
Thanks for any help in advance! :)