I have a Django app named app1 with models and migrations files.
I renamed this app to app2 and I fixed all imports, urls etc...
I now have a probl
This is elequently answered in this blog post.
The bullet points are:
django_content_type table to refer to the application's app_label. django_migrations table and update the reference for each migration by setting the app field your new app label. /static or /templates folder. For example, you might have
./foo_app/templates/foo_app/index.html and it should be updated to ./bar_app/templates/bar_app/index.html.