diff gpp/gcalendar/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 9a4bffdf37c3
children
line wrap: on
line diff
--- a/gpp/gcalendar/models.py	Wed May 02 20:43:16 2012 -0500
+++ b/gpp/gcalendar/models.py	Wed May 02 20:51:38 2012 -0500
@@ -57,8 +57,7 @@
     html = models.TextField(blank=True)
     date_submitted = models.DateTimeField(auto_now_add=True)
     google_id = models.CharField(max_length=255, blank=True)
-    google_url = models.URLField(verify_exists=False, max_length=255,
-            blank=True)
+    google_url = models.URLField(max_length=255, blank=True)
     status = models.SmallIntegerField(choices=STATUS_CHOICES, default=NEW,
             db_index=True)
     create_forum_thread = models.BooleanField(default=False)