X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=authosm%2Fmodels.py;h=09adfed7e3962f1ec4babac0b850c95e3dc23a67;hb=ddc44c25bfcdd7b926819697cfce4403947fc364;hp=74c1f1eb396be5da893f6bbf240784da31816b95;hpb=5bc5ebbb3fe574a5699c580594808cee44a4e0b3;p=osm%2FLW-UI.git diff --git a/authosm/models.py b/authosm/models.py index 74c1f1e..09adfed 100644 --- a/authosm/models.py +++ b/authosm/models.py @@ -67,7 +67,7 @@ class AbstractOsmUser(AbstractBaseUser, PermissionsMixin): current_project = models.CharField(_('project_id'), max_length=255) psw = models.CharField(_('psw'), max_length=36) - token = models.CharField(_('token'), max_length=255) + token = models.CharField(_('token'), max_length=512) project_id = models.CharField(_('project_id'), max_length=36) project_name = models.CharField(_('project_name'), max_length=36, default='') token_expires = models.FloatField(_('token_expires'), max_length=36)