Skip to content
0038_add_participations_related_name_on_course.py 440 B
Newer Older
Andreas Klöckner's avatar
Andreas Klöckner committed
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0037_flowruleexception'),
    ]

    operations = [
        migrations.AlterField(
            model_name='participation',
            name='course',
            field=models.ForeignKey(related_name='participations', to='course.Course', on_delete=models.CASCADE),
            preserve_default=True,
        ),
    ]