Apply migrations and models from all the apps

后端 未结 2 2037
孤街浪徒
孤街浪徒 2021-01-12 15:25

I\'m using Django and I have an schema like

mainapp
|---mainapp
|   |---migrations.py
|   |---models/
|---app2
    |---migrations/
    |---models/

2条回答
  •  感情败类
    2021-01-12 16:08

    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

提交回复
热议问题