Django MySQL error when creating tables

后端 未结 11 1542
感动是毒
感动是毒 2020-12-14 01:02

I am building a django app with a MySQL DB. When I run \'python manage.py migrate\' for the first time, some tables are created well then some errors appear. The error broug

11条回答
  •  暖寄归人
    2020-12-14 01:35

    This will works

    python manage.py migrate auth
    python manage.py migrate
    

    The issue because of other migration run before the auth, so this will make sure "authtools"'s migration run first

提交回复
热议问题