diff gpp/weblinks/models.py @ 572:368d731af479

For Django 1.4, remove verify_exists from model field definitions.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 May 2012 20:51:38 -0500
parents d424b8bae71d
children
line wrap: on
line diff
--- a/gpp/weblinks/models.py	Wed May 02 20:43:16 2012 -0500
+++ b/gpp/weblinks/models.py	Wed May 02 20:51:38 2012 -0500
@@ -33,7 +33,7 @@
     """Abstract model to aggregate common fields of a web link."""
     category = models.ForeignKey(Category)
     title = models.CharField(max_length=128)
-    url = models.URLField(verify_exists=False, db_index=True)
+    url = models.URLField(db_index=True)
     description = models.TextField(blank=True)
     user = models.ForeignKey(User)
     date_added = models.DateTimeField(db_index=True)