Hi there,
I'm building some application, the involves training programs. my issue is like this,
A workout could be simple as this:
3 sets of 45 push ups.
so I would just create 2 fields, sets / count
BUT a workout could be also:
45 minutes run, 3 sets of 45 pushups, 2 minutes of rope jumping, 150 meter swimming.
so i need to build one table, that would know to store the data as it changes it structure, and later I could still translate it to real data on the gui.
how can i make it efficiently and wisely ?
edit:
To make it a bit clear, i want to specify to each workout what Ive done in it. so one workout could be : 3 sets, first: 45 push ups second: 32 push ups third: 30 push ups
and another workout could be: 3 sets of pushups: first: 45 push ups second:32 push ups third: 30 push ups and also 2 minutes of jumping rope 150 meter swimming
the data isn't consistence, one set could be a number of push ups, the next could be a time length etc..