From bf518235946225f1463c70c193f5dc6e24e6385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halld=C3=B3r?= Date: Mon, 26 Apr 2010 10:09:11 +0000 Subject: Give the platform field some more space since it's supposed to be a comma seperated list of supported platforms (according to pep 241). --- djangopypi/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangopypi/models.py b/djangopypi/models.py index 20d047b..d98c4da 100644 --- a/djangopypi/models.py +++ b/djangopypi/models.py @@ -86,7 +86,7 @@ class Release(models.Model): version = models.CharField(max_length=32) distribution = models.FileField(upload_to=UPLOAD_TO) md5_digest = models.CharField(max_length=255, blank=True) - platform = models.CharField(max_length=32, blank=True) + platform = models.CharField(max_length=128, blank=True) signature = models.CharField(max_length=128, blank=True) filetype = models.CharField(max_length=255, blank=True) pyversion = models.CharField(max_length=32, blank=True) -- cgit v1.2.3