Skip to content

Instantly share code, notes, and snippets.

@hgfischer
Created March 25, 2011 17:38
Show Gist options
  • Save hgfischer/887247 to your computer and use it in GitHub Desktop.
Save hgfischer/887247 to your computer and use it in GitHub Desktop.
Code to hack User model for Django
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