django-auth-hack 0.1.1
Hacking Django's contrib auth app to support longer usernames
django-auth-hack
This is a Django application for hacking the builtin django.contrib.auth application. This app aims to add support to a longer username field on User model.
Installation and configuration
To install this app you need first to add it to your environment using pip:
$ [sudo] pip install django-auth-hack
Then you need to add the auth_hacks on top of your INSTALLED_APPS, before any other application:
INSTALLED_APPS = (
'auth_hacks',
# other apps
)
You can customize the new username max length by defining the USERNAME_MAX_LENGTH in your settings file:
USERNAME_MAX_LENGTH = 255
Database
Make sure you alter the column username in the table auth_user. You can use South or run an ALTER TABLE SQL manually. Using MySQL, you could run:
ALTER TABLE auth_user MODIFY COLUMN auth_user VARCHAR(255) NOT NULL;
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| django-auth-hack-0.1.1.tar.gz (md5) | Source | 2011-12-29 | 2KB | 187 | |
- Author: Francisco Souza
- Package Index Owner: franciscosouza
- DOAP record: django-auth-hack-0.1.1.xml
