My models.py was getting too large so I tried to split it into
/models
__init__.py
someLogicalGroupOfModels.py
andSoOn.py
in the __init__.py I have
from appName.models.someLogicalGroupOfModels import *
from appName.models.andSoOn import *
All of my imports still work but the queries are now looking for models_someTableName instead of appName_someTableName.
I know I've done this before. Is there something I'm doing wrong?