WIP
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 4.2.2 on 2023-06-22 02:08
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('workout', '0004_workoutexercise_duration'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='completedworkout',
|
||||
name='total_time',
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='completedworkout',
|
||||
name='workout_start_time',
|
||||
field=models.DateTimeField(default=datetime.datetime(2023, 6, 22, 2, 8, 12, 885580)),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
19
workout/migrations/0006_completedworkout_notes.py
Normal file
19
workout/migrations/0006_completedworkout_notes.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.2.2 on 2023-06-22 03:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('workout', '0005_completedworkout_total_time_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='completedworkout',
|
||||
name='notes',
|
||||
field=models.TextField(default=''),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user