This commit is contained in:
Trey t
2023-06-26 15:49:18 -05:00
parent fec72b4050
commit 15c0047fba
4 changed files with 25 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ class Exercise(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
name = models.CharField(null=True, blank=True, max_length=64)
description = models.CharField(null=True, blank=True, max_length=255)
description = models.CharField(null=True, blank=True, max_length=1024)
side = models.CharField(null=True, blank=True, max_length=64)
is_two_dumbbells = models.BooleanField(default=False)
is_trackable_distance = models.BooleanField(default=False)