Преглед на файлове

HUE-1973 [core] django-openid-auth mysql issue

Change django-auth-ldap model.
There are no migrations, so this may break some upgrade paths.
Abraham Elmahrek преди 11 години
родител
ревизия
4db11f2dba
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      desktop/core/ext-py/django-openid-auth-0.5/django_openid_auth/models.py

+ 1 - 1
desktop/core/ext-py/django-openid-auth-0.5/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=2047, unique=True)
+    claimed_id = models.CharField(max_length=255, unique=True)
     display_id = models.TextField(max_length=2047)