From 49939529523ae12c709392720d79fb877770331a Mon Sep 17 00:00:00 2001 From: Bernardo Kyotoku Date: Sat, 5 Mar 2011 12:55:14 -0300 Subject: [PATCH] TextField to CharField change --- social_auth/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/social_auth/models.py b/social_auth/models.py index 020f158..ec5bbad 100644 --- a/social_auth/models.py +++ b/social_auth/models.py @@ -65,7 +65,7 @@ class UserSocialAuth(models.Model): class Nonce(models.Model): """One use numbers""" - server_url = models.TextField() + server_url = models.CharField() timestamp = models.IntegerField() salt = models.CharField(max_length=40) @@ -76,7 +76,7 @@ class Nonce(models.Model): class Association(models.Model): """OpenId account association""" - server_url = models.TextField() + server_url = models.CharField() handle = models.CharField(max_length=255) secret = models.CharField(max_length=255) # Stored base64 encoded issued = models.IntegerField() -- 2.39.5