Remove "auth" field which is currently not used
- Legacy-Id: 3375
This commit is contained in:
parent
e5968e53e7
commit
3ea58384bd
|
@ -85,7 +85,6 @@ class Role(models.Model):
|
|||
name = models.ForeignKey(RoleName)
|
||||
group = models.ForeignKey(Group)
|
||||
email = models.ForeignKey(Email, help_text="Email address used by person for this role")
|
||||
auth = models.CharField(max_length=255, blank=True) # unused?
|
||||
def __unicode__(self):
|
||||
return u"%s is %s in %s" % (self.email.get_name(), self.name.name, self.group.acronym or self.group.name)
|
||||
|
||||
|
@ -98,6 +97,5 @@ class RoleHistory(models.Model):
|
|||
name = models.ForeignKey(RoleName)
|
||||
group = models.ForeignKey(GroupHistory)
|
||||
email = models.ForeignKey(Email, help_text="Email address used by person for this role")
|
||||
auth = models.CharField(max_length=255, blank=True) # unused?
|
||||
def __unicode__(self):
|
||||
return u"%s is %s in %s" % (self.email.get_name(), self.name.name, self.group.acronym)
|
||||
|
|
Loading…
Reference in a new issue