django.db.utils.operationalerror: (1050, "table 'django_content_type' already exists")
时间: 2023-04-22 16:05:09 浏览: 258
模型迁移错误常见问题”django.db.utils.InternalError: (1050, “Table ‘django_content_type’ already exists”)”
这个错误是因为在数据库中已经存在名为'django_content_type'的表,而Django尝试再次创建该表。需要检查数据库中是否已经存在该表,如果存在,则需要删除该表或更改Django模型以使用现有表。
阅读全文