summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2010-08-05 10:21:25 +0200
committerLeif Johansson <leifj@sunet.se>2010-08-05 10:21:25 +0200
commit36a2a461a2e98a9af3efc9d3c7f48744773b93bc (patch)
tree4b12690626326218754a440a7551641baa06a1c6
parente1902354b5d97cb2cbb36a3c6a00090d60dac753 (diff)
url verification more trouble than its worth
-rw-r--r--coip/apps/link/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coip/apps/link/models.py b/coip/apps/link/models.py
index 25c26b4..ada194d 100644
--- a/coip/apps/link/models.py
+++ b/coip/apps/link/models.py
@@ -8,7 +8,7 @@ from coip.apps.name.models import Name
class Link(models.Model):
name = models.ForeignKey(Name,related_name='links')
- url = models.URLField()
+ url = models.CharField(max_length=255)
tag = models.CharField(max_length=255)
text = models.CharField(max_length=255)
timecreated = models.DateTimeField(auto_now_add=True)