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? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/wt_ebzcUYSYJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

