The migration process runs within a docker environment.
After running docker-compose run web python manage.py makemigrations
terminal showed
Migrations for 'api_app': api_app/migrations/0004_analysis_error.py
But the file didn't show up in the local directory. I ran docker-compose run web python manage.py migrate
and it even showed:
Applying api_app.0004_analysis_error... OK
But still no api_app.0004_analysis_error.py in the local directory.
I also tried making an empty migration, the same behavior occurred. I also tried removing the changes and resetting the migrations, no changes were detected (even though there were).
The application name has been included in the [INSTALLED_APP] module in settings.py.