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
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