Hi, I'm developing my first web application with Django. The model is growing up quite fast and I started to split the code in different files I putted under models directory with its __init__.py file. Everything works fine, but syncdb doesn't recognize new models, and consequently doesn't create new tables.
What is the best practice to organize models?
I thought to create different applications, but in this case I don't know how to manage relations across differents applications.
What do you suggest?
Thanks in advance.