[Answered ]-Django User model customize validation

2👍

You can monkey patch User model. Add this line to any of your models.py:

from django.contrib.auth.models import User

User._meta.get_field('username').max_length = 75

EDIT: We are so naive. Look at this app. Turns out there is a lot of places to monkey patch 🙂

Leave a comment