在我的models.py文件中添加了一个author字段后,我试图进行迁移,但Django问我: You are trying to add a non-nullable field 'author'文件: from django.db import modelsfrom django.urls import
我的models.py文件中有以下内容: title = models.CharField(max_length=200) body = models.CharField(max_length=200)
当我登录Django管理员时,我添加了一些电影,然后添加了一些注释,选择了注释所涉及的哪个电影对象。我希望我<