Add comment field to community sites, never hurts...

This commit is contained in:
Magnus Hagander
2011-12-22 19:18:17 +01:00
parent 4f23ee8c52
commit 1fe8d6055b

View File

@ -4,6 +4,7 @@ class CommunityAuthSite(models.Model):
name = models.CharField(max_length=100, null=False, blank=False)
redirecturl = models.URLField(max_length=200, null=False, blank=False)
cryptkey = models.CharField(max_length=100, null=False, blank=False)
comment = models.TextField(null=False, blank=True)
def __unicode__(self):
return self.name