Mercurial > hg > agora-dellsystem
changeset 176:c042d26e6936
Make Bundle description optional (SCHEMA CHANGE)
author | dellsystem <ilostwaldo@gmail.com> |
---|---|
date | Sat, 20 Oct 2012 19:24:09 -0400 |
parents | 1be4e1229711 |
children | 86129d185ddb |
files | apps/bundle/models.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/apps/bundle/models.py +++ b/apps/bundle/models.py @@ -22,7 +22,7 @@ "Acceptable characters: alphanumeric characters, hyphens, and " + "underscores.")) uploader = models.ForeignKey(User) - description = models.TextField(max_length=32728) + description = models.TextField(max_length=32728, blank=True, null=True) free_license = models.ForeignKey(FreeLicense, default=1) pub_date = models.DateTimeField('date uploaded', auto_now_add=True) mod_date = models.DateTimeField('date last modified', auto_now=True)