I\'m using Django and I have an schema like
mainapp |---mainapp | |---migrations.py | |---models/ |---app2 |---migrations/ |---models/
first of all try
python manage.py makemigrations
for a specific app
python manage.py makemigrations appname
this will migrate all the apps
then
python manage.py migrate
hope it helps