Skip to content

Commit

Permalink
Making URL field a bit longer
Browse files Browse the repository at this point in the history
  • Loading branch information
Clinton Ecker committed Apr 29, 2009
1 parent a787571 commit 928a60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ittybitty/models.py
Expand Up @@ -9,7 +9,7 @@ class IttyBittyURL(models.Model):
a real URL.
"""
shortcut = models.CharField(max_length=10, blank=True, unique=True)
url = models.URLField(unique=True)
url = models.URLField(unique=True, max_length=255)
hits = models.PositiveIntegerField(default=0)
date_created = models.DateTimeField(auto_now_add=True)
date_updated = models.DateTimeField(auto_now=True)
Expand Down

0 comments on commit 928a60f

Please sign in to comment.