mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Add comment field to community sites, never hurts...
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user