当前Django用户名长度限制为30个字符。
我的个人资料模型如下所示:
from django.contrib.auth.models import User
class UserProfile(models.Model):
user = models.OneToOneField(User)
organization = models.ForeignKey(Organization)
....
是否有任何不那么难看的解决方案What is the 'right' way to extend the username field length in Django 1.5+?
P.S。 它已经部署,有数百个用户。我不能基于抽象用户实现我自己的用户类。我需要一些" hack"。目前我直接在Django中为我的本地克隆更改了值,但更难看的是猴子修补。