Posts Tagged ‘migration’

Migrating Django models with south and converting data

Tuesday, February 10th, 2009

I use South whenever a model needs to be changed. One thing that is not really documented in the South documentation is how to convert data. After some trial and error I found a way to use Django QuerySets to access both the old and new models to convert data.

(more…)