Skip to content

Commit 7c2a1b2

Browse files
committed
Undid a FK to o2o change we don't want to do (we have instances where the FK is None).
- Legacy-Id: 12402
1 parent 7c23d0c commit 7c2a1b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/liaisons/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def __unicode__(self):
212212

213213

214214
class LiaisonStatementGroupContacts(models.Model):
215-
group = models.OneToOneField(Group)
215+
group = models.ForeignKey(Group, unique=True, null=True)
216216
contacts = models.CharField(max_length=255,blank=True)
217217
cc_contacts = models.CharField(max_length=255,blank=True)
218218

0 commit comments

Comments
 (0)