diff --git a/representatives/models.py b/representatives/models.py index d07c002f8b511237db6e8aa8073fd491250326ac..3c79549e11ab40e7bdce78e74f7ffa9bcf045aa3 100644 --- a/representatives/models.py +++ b/representatives/models.py @@ -91,3 +91,5 @@ class Mandate(models.Model): end_date = models.DateField(blank=True, null=True) # Sometimes begin_date and end_date are not available active = models.NullBooleanField(default=False) + + representative = models.ForeignKey("Representative")