[Fixed]-Migration in main project not detected

1👍

The default Django project layout doesn’t expect you to put migrations in proj/proj. If you want to do this, you need to add 'proj' to your INSTALLED_APPS.

A common approach is to create an app e.g. core and put models specific to your project there.

Leave a comment