I am outsourcing my models into packages in order to have a better overview. So the models.py
of my app main
looks like
from django.db import models
from models import *
And the actual models are in models/user.py, ...
So when I go back to prepare a migration:
python manage.py makemigrations main
Django won't detect any changes. Why?