# Generated by Django 4.1.4 on 2023-07-24 09:24 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('atlas', '0005_casecollection_user_user_groups_and_more'), ] operations = [ migrations.AddField( model_name='casecollection', name='candidates_only', field=models.BooleanField(default=True, help_text='If the exam/collection is only available to candidates who have been added'), ), migrations.AlterField( model_name='casecollection', name='active', field=models.BooleanField(default=False, help_text='If an exam/collection should be available to take'), ), migrations.AlterField( model_name='casecollection', name='archive', field=models.BooleanField(default=False, help_text='Archived exams/collections will remain on the test system but will not be displayed by default'), ), migrations.AlterField( model_name='casecollection', name='name', field=models.CharField(help_text='Name of the exam/collection', max_length=200), ), migrations.AlterField( model_name='casecollection', name='open_access', field=models.BooleanField(default=False, help_text='If the exam/collection is freely accessible (to view and edit on the test system)'), ), migrations.AlterField( model_name='casecollection', name='publish_results', field=models.BooleanField(default=False, help_text='If an exam/collections results should be available'), ), ]