Reputation: 1736
How to move package from one place to another in Django (1.4) with south? Package has applied migrations.
Upvotes: 0
Views: 100
Reputation: 2786
As far as I know there is no automatic way to do that, so you'll have to do the following by hand:
That's all. To check that everything is working properly you can type python manage.py schemamigration your_new_app_name --auto and if you did everything properly it will say that nothing have changed. Now you can continue working with your app as usual.
Upvotes: 1
Reputation: 1736
Another solution is just move package to another namespace/place but don`t change package name.
Upvotes: 0