I started a new Django 1.8 project and realized that I missed something (i had done the initial migrations). I dropped the database (postgreSQL) and deleted migration<
migration<
The above error occurs when you have django.contrib.admin among the installed applications. Run these commands in their respective order.
** ./manage.py makemigrations ./manage.py migrate auth ./manage.py migrate**
That worked for me perfectly.