我正在阅读 Django Polls 教程,我正在尝试命令“python manage.py makemigrations polls”,但我不断收到消息“在应用程序'polls'中没有检测到更改”
我不明白我做错了什么,或者我怎么能做不同的事情,或者这个信息甚至意味着什么。
为清楚起见编辑:
我希望有点像教程上的打印输出:
Migrations for 'polls':
0001_initial.py:
- Create model Question
- Create model Choice
然后在本教程的后面,当它要求我输入命令python manage.py sqlmigrate polls 0001
时,我会得到某种打印输出,就像所示的那样(相当长)。我正在学习https://docs.djangoproject.com/en/1.7/intro/tutorial01/上的教程
相反,我得到
CommandError: Cannot find a migration matching 'polls' form app '0001'. Is it in INSTALLED_APPS?