WIP
This commit is contained in:
18
workout/migrations/0012_workout_estimated_time.py
Normal file
18
workout/migrations/0012_workout_estimated_time.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user