13

当我尝试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 安全地删除内容类型中的那些陈旧条目吗?

4

1 回答 1

15

通常您可以安全地删除它们,因为这些是不再存在模型的内容类型。您唯一应该注意的是,如果您有其他ContentType模型通过 a指向该模型,ForeignKey这些对象也将被删除。如果您没有将任何外键设置ContentType为根本不会发生任何不好的事情,如果您确实评估了是否仍然需要对您将要删除的内容类型具有外键的对象(如果有的话)。

于 2013-05-23T07:50:13.723 回答