Makemigrations is not identifying changes. Is there any solution to resolve this without touching my database migration logs?

I encounter this problem in every Django project whenever I do some complex work. I tried deleting all the migrations folders from each app and then changed the database. It worked, but I'm looking for a solution that doesn't involve touching migration files or the database.

whenever i tried python manage.py makemigrations it always displays no changes dected.

Back to Top