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.
Source:stackexchange.com