Files
penracourses/atlas/migrations/0059_alter_casecollection_markers.py
T
2024-08-05 13:20:29 +01:00

21 lines
624 B
Python

# Generated by Django 5.0.2 on 2024-08-05 10:09
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0058_casecollection_markers'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.AlterField(
model_name='casecollection',
name='markers',
field=models.ManyToManyField(blank=True, help_text='Authorised markers for the exam', null=True, related_name='casecollection_markers', to=settings.AUTH_USER_MODEL),
),
]