Undid a FK to o2o change we don't want to do (we have instances where the FK is None).

- Legacy-Id: 12402
This commit is contained in:
Henrik Levkowetz 2016-11-28 17:50:08 +00:00
parent 7c23d0c52e
commit 7c2a1b2ee4

View file

@ -212,7 +212,7 @@ class RelatedLiaisonStatement(models.Model):
class LiaisonStatementGroupContacts(models.Model):
group = models.OneToOneField(Group)
group = models.ForeignKey(Group, unique=True, null=True)
contacts = models.CharField(max_length=255,blank=True)
cc_contacts = models.CharField(max_length=255,blank=True)