Fixed Concept2 Import bug (empty notes field)
This commit is contained in:
@@ -97,7 +97,7 @@ class Workout(models.Model):
|
||||
maxhr = models.IntegerField(blank=True,null=True)
|
||||
uploadedtostrava = models.IntegerField(default=0)
|
||||
uploadedtosporttracks = models.IntegerField(default=0)
|
||||
notes = models.CharField(blank=True,max_length=200)
|
||||
notes = models.CharField(blank=True,null=True,max_length=200)
|
||||
summary = models.TextField(blank=True)
|
||||
|
||||
def __str__(self):
|
||||
|
||||
Reference in New Issue
Block a user