Just create data migration as part of one of your internal applications and just do data manipulation (maybe even create a temporary application just for this purpose?)
An important bit is adding a new dependency to the data transfer file. Something like this, but of course, find the last migration name in the directory extenralapp/migrations(or some other directory if it is overridden in settings.MIGRATION_MODULES).
class Migration(migrations.Migration):
dependencies = [
('yourapp', '0004_auto_20151216_1509'),
('externalapp', '0011_20010203_1415'),
]
...
A related thing ...
If you use models ContentTypeand / or auth.Permission, you may have problems retrieving them. Both of these models are created at the end of a successful team manage.py migrate.
, , , (.. db). . # 23422 .