Possible Duplicate:
Can django's auth_user.username be varchar(75)? How could that be done?
I've inherited a Django application which uses a custom form-less auth backend. It works around the 30 character limit in django.contrib.auth.models.User
by a SQL hack ALTER TABLE auth_user MODIFY COLUMN username varchar(90);
, which is of course only valid for the database, but not for forms. Since I'm trying to remove all the hacks from code including SQL ones, I'm looking for a proper way to remove that limitation. How would you recommend removing it?