I'm going through the Django Polls tutorial, and I'm trying the command "python manage.py makemigrations polls", and I keep getting the message "No changes detected in app 'polls'"
I don't understand what I'm doing wrong or how I could do it differently, or what the message even means.
EDIT for clarity:
I expect something somewhat like the printout on the tutorial:
Migrations for 'polls':
0001_initial.py:
- Create model Question
- Create model Choice
And then later in the tutorial, when it requests I type the command python manage.py sqlmigrate polls 0001
, that I get some sort of printout like the one shown (which is rather long). I'm working off the tutorial at https://docs.djangoproject.com/en/1.7/intro/tutorial01/
Instead, I get
CommandError: Cannot find a migration matching 'polls' form app '0001'. Is it in INSTALLED_APPS?