From: Bernardo Kyotoku Date: Sat, 5 Mar 2011 15:55:14 +0000 (-0300) Subject: TextField to CharField change X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=49939529523ae12c709392720d79fb877770331a;p=django-social-auth.git TextField to CharField change --- 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()