fix: Remove Person.core_member field

See #33
This commit is contained in:
James Graham
2020-06-24 13:47:12 +01:00
parent 9a84f77ec4
commit 26bf55b4b4
4 changed files with 30 additions and 16 deletions

View File

@@ -122,9 +122,6 @@ class Person(models.Model):
#: Name of the person
name = models.CharField(max_length=255, blank=False, null=False)
#: Is this person a member of the core project team?
core_member = models.BooleanField(default=False, blank=False, null=False)
#: People with whom this person has relationship - via intermediate :class:`Relationship` model
relationship_targets = models.ManyToManyField(
'self',