21 lines
571 B
Python
21 lines
571 B
Python
# Generated by Django 4.2.2 on 2023-07-25 15:55
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('workout', '0011_alter_completedworkout_notes'),
|
|
('superset', '0005_supersetexercise_order'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='superset',
|
|
name='workout',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='superset_workout', to='workout.workout'),
|
|
),
|
|
]
|