File diff e952e2b26a5e → 621ace848827
www/conservancy/apps/fundgoal/models.py
Show inline comments
...
 
@@ -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