[Answer]-South not detecting new model file in model folder

1👍

In the __init__.py file of the models folder, you have to import the model for South or even syncdb to detect it. Basically django is just looking for one file with all your models… and if you import it all in init.py that’s what the system will see.

Leave a comment