aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHalldór <halldor@halldor-imac.local>2010-04-26 10:09:11 +0000
committerHalldór <halldor@halldor-imac.local>2010-04-26 10:09:11 +0000
commitbf518235946225f1463c70c193f5dc6e24e6385b (patch)
tree5b343926389118962ad13fb36c7c024adffa1893
parent2415dfa0f5529405daebb1d081f49a8e8fa80d37 (diff)
downloadchishop-bf518235946225f1463c70c193f5dc6e24e6385b.tar.bz2
chishop-bf518235946225f1463c70c193f5dc6e24e6385b.tar.xz
chishop-bf518235946225f1463c70c193f5dc6e24e6385b.zip
Give the platform field some more space since it's supposed to be a comma seperated list of supported platforms (according to pep 241).
-rw-r--r--djangopypi/models.py2
1 files changed, 1 insertions, 1 deletions
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):
86 version = models.CharField(max_length=32) 86 version = models.CharField(max_length=32)
87 distribution = models.FileField(upload_to=UPLOAD_TO) 87 distribution = models.FileField(upload_to=UPLOAD_TO)
88 md5_digest = models.CharField(max_length=255, blank=True) 88 md5_digest = models.CharField(max_length=255, blank=True)
89 platform = models.CharField(max_length=32, blank=True) 89 platform = models.CharField(max_length=128, blank=True)
90 signature = models.CharField(max_length=128, blank=True) 90 signature = models.CharField(max_length=128, blank=True)
91 filetype = models.CharField(max_length=255, blank=True) 91 filetype = models.CharField(max_length=255, blank=True)
92 pyversion = models.CharField(max_length=32, blank=True) 92 pyversion = models.CharField(max_length=32, blank=True)