# Generated by Django 4.1.4 on 2024-01-29 10:11 from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('generic', '0011_examcollection'), ] operations = [ migrations.AddField( model_name='examcollection', name='author', field=models.ManyToManyField(blank=True, help_text='Author/Manager(s) of the exam collection', to=settings.AUTH_USER_MODEL), ), ]