diff --git a/proceedings/migrations/0009_auto_20210422_0833.py b/proceedings/migrations/0009_auto_20210422_0833.py new file mode 100644 index 0000000000000000000000000000000000000000..0bdeb6b2df58287b33f2d834001b74a083c9290f --- /dev/null +++ b/proceedings/migrations/0009_auto_20210422_0833.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.16 on 2021-04-22 06:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('proceedings', '0008_auto_20200810_1409'), + ] + + operations = [ + migrations.AlterField( + model_name='proceedings', + name='fellowships', + field=models.ManyToManyField(blank=True, related_name='proceedings', to='colleges.Fellowship'), + ), + ] diff --git a/proceedings/models.py b/proceedings/models.py index 47d021a127c20245ece82f34dae1a54d8bdd0619..6cfad87a0218dfdfdb6ff00a9876ddb848c991d2 100644 --- a/proceedings/models.py +++ b/proceedings/models.py @@ -39,8 +39,7 @@ class Proceedings(TimeStampedModel): # Fellows lead_fellow = models.ForeignKey('colleges.Fellowship', null=True, blank=True, on_delete=models.SET_NULL, related_name='+') - fellowships = models.ManyToManyField('colleges.Fellowship', blank=True, - limit_choices_to={'guest': True}) + fellowships = models.ManyToManyField('colleges.Fellowship', blank=True) # Submission data submissions_open = models.DateField()