Use consistent description types

This commit is contained in:
Christian Adams
2019-08-16 09:25:03 -04:00
parent e08e70efb4
commit 52f8a8a6e5
2 changed files with 19 additions and 2 deletions

View File

@@ -98,8 +98,7 @@ class OAuth2AccessToken(AbstractAccessToken):
related_name="%(app_label)s_%(class)s",
help_text=_('The user representing the token owner')
)
description = models.CharField(
max_length=200,
description = models.TextField(
default='',
blank=True,
)