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,17 @@
# Generated by Django 4.2.2 on 2023-06-12 01:26
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('exercise', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='exercise',
options={'ordering': ('name',)},
),
]