If there are no changes to the database, you can create empty migrations for both applications that had this model, and which now have this model:
./manage.py schemamigration app1 del_model1 --empty ./manage.py schemamigration app2 add_model1 --empty
the south analyzes the models described in the last migration, and from these data it creates the following migrations
source share