19 lines
428 B
Python
19 lines
428 B
Python
# Generated by Django 4.2.2 on 2023-07-25 16:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('workout', '0011_alter_completedworkout_notes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='workout',
|
|
name='estimated_time',
|
|
field=models.FloatField(blank=True, max_length=255, null=True),
|
|
),
|
|
]
|