Reputation: 4883
So I have a client who cloned an old project in Django to start working on a brand new theme and features. Now they're needing to move the data from the old project to the new one (User and other similar tables). Some of the main models on the old project have significant changes on the newer version. I want to ask if there's any good route of doing this kind of migration?
Upvotes: 0
Views: 958
Reputation: 6359
Sure, here it is in several easy steps using south.
Upvotes: 2