Created
March 25, 2011 17:38
-
-
Save hgfischer/887247 to your computer and use it in GitHub Desktop.
Code to hack User model for Django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Put this in models.py of your application, before auth syncdb | |
# Hack django.contrib.auth.User | |
User._meta.get_field_by_name('username')[0].max_length = 128 | |
User._meta.get_field_by_name('first_name')[0].max_length = 128 | |
User._meta.get_field_by_name('last_name')[0].max_length = 128 | |
User._meta.get_field_by_name('email')[0].max_length = 128 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment