Django 1.7 - “No migrations to apply” when run migrate after makemigrations

后端 未结 15 1552
离开以前
离开以前 2020-11-28 20:46

I use Django1.7 with Mezzanine. I create simple profile (according to Mezzanine documentation) stored in separate app \"profiles\":

class RoadmapProfile(mode         


        
15条回答
  •  独厮守ぢ
    2020-11-28 21:28

    Maybe your model not linked when migration process is ongoing. Try to import it in file urls.py from models import your_file

提交回复
热议问题