gpt4 book ai didi

python - django.db.utils.OperationalError : no such column: django_content_type. 名称?

转载 作者:行者123 更新时间:2023-11-28 18:35:59 29 4
gpt4 key购买 nike

我在 models.py 中添加了一个新模型:

class Attendence_Mgmt(models.Model):    
teacher_name=models.ForeignKey(Teacher_Mgmt)
date=models.DateField(blank=False)
intime=models.TimeField(blank=False)
outtime=models.TimeField(blank=False)

当我在我的项目上工作并运行 make-migrations 命令时,它运行良好,但是当我运行 migrate 命令时,我突然遇到了上述类型的错误。

为什么会出现上述类型的错误?我该如何解决这个问题?

最佳答案

尝试在 Django 2.1.5 上回滚迁移时,我遇到了同样的问题。迁移是使用 Django 2.0+ 生成的。

我已经通过运行解决了这个问题:

$ manage.py migrate contenttypes 0001_initial
$ manage.py migrate <my_app> zero
$ manage.py migrate contenttypes
$ manage.py migrate auth

我通过使用 manage.py showmigrations 列出迁移来找到这个解决方案:

contenttypes
[X] 0001_initial
[X] 0002_remove_content_type_name

因为,错误消息是 django.db.utils.OperationalError: no such column: django_content_type.name 并且第二个 contenttypes 迁移明确地删除了 name,我已尝试暂时恢复此迁移并且成功了。

关于python - django.db.utils.OperationalError : no such column: django_content_type. 名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32478374/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com