[Django]-Django 1.10 migration support for apps in subdirectories

3👍

When you run makemigrations you should use the app label (e.g. app1), not the name (e.g. apps.app1).

./manage.py makemigrations app1

Leave a comment