can create a workout

This commit is contained in:
Trey t
2023-06-11 21:10:48 -05:00
parent a2fd663255
commit f2f58e94cd
8 changed files with 107 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-06-12 01:26
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('workout', '0001_initial'),
]
operations = [
migrations.RenameField(
model_name='workout',
old_name='user',
new_name='registered_user',
),
]

View File

@@ -0,0 +1,19 @@
# Generated by Django 4.2.2 on 2023-06-12 01:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('workout', '0002_rename_user_workout_registered_user'),
]
operations = [
migrations.AlterField(
model_name='workout',
name='name',
field=models.CharField(default='q', max_length=255),
preserve_default=False,
),
]