diff options
| author | Tim Graham <timograham@gmail.com> | 2015-10-28 15:59:17 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-29 08:58:49 -0400 |
| commit | 15ef1dd478c5b6f005e5f782b7619f718ed55e84 (patch) | |
| tree | ecc98318982921d1bd0d0bb2fd0fc83742614024 /docs/ref | |
| parent | 0bd067d0950f49ea586b9c2f0cc74fee24b1d3e9 (diff) | |
Fixed #20846 -- Increased User.username max_length to 254 characters.
Thanks Collin Anderson and Nick Sandford for work on the patch.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/auth.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt index 6cbfd88ac6..6ca2581397 100644 --- a/docs/ref/contrib/auth.txt +++ b/docs/ref/contrib/auth.txt @@ -21,9 +21,13 @@ Fields .. attribute:: username - Required. 30 characters or fewer. Usernames may contain alphanumeric, + Required. 254 characters or fewer. Usernames may contain alphanumeric, ``_``, ``@``, ``+``, ``.`` and ``-`` characters. + .. versionchanged:: 1.10 + + The ``max_length`` increased from 30 to 254 characters. + .. attribute:: first_name Optional. 30 characters or fewer. |
