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:
parent
7c23d0c52e
commit
7c2a1b2ee4
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue