From 1fe8d6055b94cff3e76d631c243406c87caddbc1 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 22 Dec 2011 19:18:17 +0100 Subject: [PATCH] Add comment field to community sites, never hurts... --- pgweb/account/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pgweb/account/models.py b/pgweb/account/models.py index 625cfe7d..4fb216e1 100644 --- a/pgweb/account/models.py +++ b/pgweb/account/models.py @@ -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