我遵循Django网站Writing your first Django app上的教程。
当我运行命令
\>py manage.py makemigrations polls
为了制作模型
from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
我收到以下消息
Migrations for 'polls':
polls/migrations/0001_initial.py:
- Create model Choice
- Create model Question
我没有得到以下内容
- Add field question to choice
我在SQLite和PostgresQL中尝试了相同的方法。我使用Python3.7和Django2.2.1。我不知道这里的错误。