# Generated by Django 3.2.18 on 2023-11-24 05:45 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("judge", "0173_fulltext"), ] operations = [ migrations.AddField( model_name="contestssummary", name="results", field=models.JSONField(blank=True, null=True), ), migrations.AlterField( model_name="contest", name="authors", field=models.ManyToManyField( help_text="These users will be able to edit the contest.", related_name="_judge_contest_authors_+", to="judge.Profile", verbose_name="authors", ), ), migrations.AlterField( model_name="contest", name="curators", field=models.ManyToManyField( blank=True, help_text="These users will be able to edit the contest, but will not be listed as authors.", related_name="_judge_contest_curators_+", to="judge.Profile", verbose_name="curators", ), ), migrations.AlterField( model_name="contest", name="testers", field=models.ManyToManyField( blank=True, help_text="These users will be able to view the contest, but not edit it.", related_name="_judge_contest_testers_+", to="judge.Profile", verbose_name="testers", ), ), ]