This commit is contained in:
Trey t
2023-06-21 23:00:19 -05:00
parent db4d32d919
commit 1019e6eabf
6 changed files with 51 additions and 2 deletions

View 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,
),
]