Mercurial > public > sg101
diff gpp/ygroup/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 | 0c18dfb1da1c |
children |
line wrap: on
line diff
--- a/gpp/ygroup/models.py Wed May 02 20:43:16 2012 -0500 +++ b/gpp/ygroup/models.py Wed May 02 20:51:38 2012 -0500 @@ -34,7 +34,7 @@ msg = models.TextField() # precomputed URL to this post in the parent thread for efficiency - thread_url = models.URLField(verify_exists=False, blank=True) + thread_url = models.URLField(blank=True) class Meta: ordering = ('creation_date', )