当我尝试syncdb
为我的django项目时,我看到以下抱怨:
The following content types are stale and need to be deleted:
myapp |
Any objects related to these content types by a foreign key will also
be deleted. Are you sure you want to delete these content types?
If you're unsure, answer 'no'.
虽然我也阅读了类似的问题django-syncdb-many-to-many-stale,但我不能冒险键入yes
,因为我在prod实例上。
yes
安全会删除contenttype中的陈旧条目吗?
答案 0 :(得分:15)
通常您可以安全地删除它们,因为这些是不再存在模型的内容类型。
您唯一应该注意的是,如果您有其他模型通过ContentType
指向ForeignKey
模型,这些对象也将被删除。如果您没有将任何外键设置为ContentType
,则不会发生任何不良情况,如果您确实评估是否仍需要具有外键的对象即将删除的内容类型(如果有的话)是任何)。