Django Migration file not being created despite showing its name and changes

It started seemingly out of nowhere, I'm unable to trace the origins of this issue but yesterday I made migrations just fine and I'm the only working on the project as of now, when I run python manage.py makemigrations it shows:

Migrations for 'app_name':
  app_name/migrations/0XXX_Do_stuff.py
    - Add field
    - Remove field
    - Alter field
    - Create model
    - Add field x to model`

When running migrations this shows up:

Operations to perform:
  Apply all migrations: things, things
Running migrations:
  No migrations to apply.
  Your models in app(s): 'app_name', 'app_name_too' have changes that are not yet reflected in a migration, and so won't be applied.
  Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.

I can provide any code needed but I honestly don't even know where to start, Any help would be appreciated.

I use MySQL.

Back to Top