diff --git a/www/conservancy/apps/fundgoal/models.py b/www/conservancy/apps/fundgoal/models.py index 704b75286f37e35e10eee9170b8ad075425fb3bb..46d5f26e0ef5f9362656e987d3a092528de616b7 100644 --- a/www/conservancy/apps/fundgoal/models.py +++ b/www/conservancy/apps/fundgoal/models.py @@ -18,3 +18,14 @@ class FundraisingGoal(models.Model): class Meta: ordering = ('fundraiser_code_name',) + + +class GoalProvider(models.Model): + fundraising_goal = models.ForeignKey( + 'FundraisingGoal', + on_delete=models.CASCADE, + ) + provider_name = models.CharField(max_length=512) + + def __unicode__(self): + return self.provider_name