Migrate your user profile data to Django 1.5 custom user model
One of the major feature of Django 1.5 is the new custom user model. This article is a step by step guide on how to migrate your existing user data using the legacy user profile (which will be dropped in version 1.7) to a custom user model without losing data in the process.
This guide will use the excellent South framework to handle the migration. If you are ...
read more