Creating users in django (NOT NULL constraint failed: auth_user.last_login)
last_login
field changed in django 1.8. Just run the migrations
python manage.py migrate
Same issue, Had to run python manage.py migrate --fake
and then python manage.py migrate
and it worked perfectly.