Trying to follow the tutorial at Django project.
The problem I\'ve come across is that when performing the command: python manage.py sql polls I\'m given th
python manage.py sql polls
In Django 1.8, you should run another command--makemigrations [your app name]:
$ python manage.py makemigrations polls
You should see something similar to the following:
Migrations for 'polls': 0001_initial.py: - Create model Question - Create model Choice - Add field question to choice