Private
Public Access
1
0

trimp, tss, hrtss, normv, normw pre-calculated

This commit is contained in:
Sander Roosendaal
2018-07-06 18:06:04 +02:00
parent b1537bad88
commit b9d43c7536
4 changed files with 181 additions and 65 deletions

View File

@@ -1496,6 +1496,12 @@ class Workout(models.Model):
max_length=100)
distance = models.IntegerField(default=0,blank=True)
duration = models.TimeField(default=1,blank=True)
trimp = models.IntegerField(default=-1,blank=True)
rscore = models.IntegerField(default=-1,blank=True)
hrtss = models.IntegerField(default=-1,blank=True)
normp = models.IntegerField(default=-1,blank=True)
normv = models.FloatField(default=-1,blank=True)
normw = models.FloatField(default=-1,blank=True)
weightcategory = models.CharField(
default="hwt",
max_length=10,