[snowy] Finish re-applying mysql fix for django_openid_auth



commit 11b4d8ca14a81e33549a811ca35eb0c328749fc7
Author: Sandy Armstrong <sanfordarmstrong gmail com>
Date:   Thu Dec 23 08:57:20 2010 -0800

    Finish re-applying mysql fix for django_openid_auth
    
    Already committed as 8b44dfa658935b1
    
    Partially re-applied in 7f8f18c

 lib/django_openid_auth/models.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/lib/django_openid_auth/models.py b/lib/django_openid_auth/models.py
index f25c6b3..3638385 100644
--- a/lib/django_openid_auth/models.py
+++ b/lib/django_openid_auth/models.py
@@ -54,5 +54,5 @@ class Association(models.Model):
 
 class UserOpenID(models.Model):
     user = models.ForeignKey(User)
-    claimed_id = models.TextField(max_length=255, unique=True)
+    claimed_id = models.CharField(max_length=255, unique=True)
     display_id = models.TextField(max_length=2047)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]