summaryrefslogtreecommitdiff
path: root/django/contrib/auth/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/auth/models.py')
-rw-r--r--django/contrib/auth/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py
index 6603fbafb8..a144589804 100644
--- a/django/contrib/auth/models.py
+++ b/django/contrib/auth/models.py
@@ -108,7 +108,7 @@ class Group(models.Model):
members-only portion of your site, or sending them members-only email
messages.
"""
- name = models.CharField(_('name'), max_length=80, unique=True)
+ name = models.CharField(_('name'), max_length=150, unique=True)
permissions = models.ManyToManyField(
Permission,
verbose_name=_('permissions'),