This commit is contained in:
Trey t
2023-07-27 19:07:35 -05:00
parent 6d68c59ac3
commit 67372cc8ab
9 changed files with 84 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-07-26 22:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('exercise', '0007_exercise_estimated_rep_duration'),
]
operations = [
migrations.AddField(
model_name='exercise',
name='video_override',
field=models.CharField(blank=True, max_length=255, null=True),
),
]