This commit is contained in:
Trey t
2023-06-14 21:23:50 -05:00
parent 3da41c3352
commit f0a4b2f717
904 changed files with 85 additions and 31 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-06-14 13:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('workout', '0003_alter_workout_name'),
]
operations = [
migrations.AddField(
model_name='workoutexercise',
name='duration',
field=models.IntegerField(blank=True, max_length=4, null=True),
),
]