I am trying to follow the Django tutorial and I faced the following error when I enter python manage.py makemigrations polls
Django
python manage.py makemigrations polls
Unknown co
I was using version 1.9 and still getting this error. I had unapplied migrations and that was the root cause in my case. I ran 'python manage.py migrate' to apply them and it worked for me.
python manage.py migrate