Django migrations not detecting all changes
问题 I have the following models. BaseClass1 and BaseClass2 are abstract models used by models. In this case, the model AdBreak is used by a viewset and a serializer. When I run python manage.py makemigrations , the changes on AdBreak model is detected. The model AdBreakStatus is not getting created. Since, AdBreakStatus is linked to AdBreak , I am expecting a migration for AdBreakStatus also. Is my understanding wrong? Edit In the initial state, there was only AdBreak and BaseClass1 model. The