WIP
This commit is contained in:
18
exercise/migrations/0007_exercise_estimated_rep_duration.py
Normal file
18
exercise/migrations/0007_exercise_estimated_rep_duration.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.2 on 2023-07-25 15:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('exercise', '0006_alter_exercise_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='exercise',
|
||||
name='estimated_rep_duration',
|
||||
field=models.FloatField(blank=True, max_length=255, null=True),
|
||||
),
|
||||
]
|
||||
@@ -21,6 +21,7 @@ class Exercise(models.Model):
|
||||
equipment_required = models.CharField(null=True, blank=True, max_length=255)
|
||||
muscle_groups = models.CharField(null=True, blank=True, max_length=255)
|
||||
synonyms = models.CharField(null=True, blank=True, max_length=255)
|
||||
estimated_rep_duration = models.FloatField(null=True, blank=True, max_length=255)
|
||||
|
||||
class Meta:
|
||||
ordering = ('name',)
|
||||
|
||||
Reference in New Issue
Block a user