SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 5ddf8989 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Remove elected boolean from PotentialFellowship

parent adb2a2ff
No related branches found
No related tags found
No related merge requests found
# Generated by Django 2.2.16 on 2021-03-26 14:02
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('colleges', '0029_mark_guest_Fellows'),
]
operations = [
migrations.RemoveField(
model_name='fellowship',
name='guest',
),
migrations.RemoveField(
model_name='potentialfellowship',
name='elected',
),
]
...@@ -47,7 +47,6 @@ class PotentialFellowship(models.Model): ...@@ -47,7 +47,6 @@ class PotentialFellowship(models.Model):
'scipost.Contributor', 'scipost.Contributor',
related_name='in_disagreement_with_election', blank=True) related_name='in_disagreement_with_election', blank=True)
voting_deadline = models.DateTimeField('voting deadline', default=timezone.now) voting_deadline = models.DateTimeField('voting deadline', default=timezone.now)
elected = models.NullBooleanField()
objects = PotentialFellowshipQuerySet.as_manager() objects = PotentialFellowshipQuerySet.as_manager()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment