aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--djangopypi/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/djangopypi/models.py b/djangopypi/models.py
index 195c491..28c7bc8 100644
--- a/djangopypi/models.py
+++ b/djangopypi/models.py
@@ -52,7 +52,7 @@ class Project(models.Model):
52 metadata_version = models.CharField(max_length=64, default=1.0) 52 metadata_version = models.CharField(max_length=64, default=1.0)
53 author = models.CharField(max_length=128, blank=True) 53 author = models.CharField(max_length=128, blank=True)
54 home_page = models.URLField(verify_exists=False, blank=True, null=True) 54 home_page = models.URLField(verify_exists=False, blank=True, null=True)
55 download_url = models.URLField(verify_exists=False, blank=True, null=True) 55 download_url = models.CharField(max_length=200, blank=True, null=True)
56 summary = models.TextField(blank=True) 56 summary = models.TextField(blank=True)
57 description = models.TextField(blank=True) 57 description = models.TextField(blank=True)
58 author_email = models.CharField(max_length=255, blank=True) 58 author_email = models.CharField(max_length=255, blank=True)