I have multiple apps with the same model names and am doing a migration between them.
X.models.Order
Y.models.Order
Resolve them via string notation in south.
orm[‘X.Order’]
PS: Note that when creating the blank data migration, you will need to pass in the `–freeze` option to add the model that isn’t in the app the migration is created from.
For example…
python manage.py datamigration appX migrating_appY_data_to_appX --freeze appY