While I'm trying to syncdb
for my django project, I'm seeing following complains:
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'.
While I've also read the similar problem django-syncdb-many-to-many-stale, but I cannot risk myself typing yes
since I'm on prod instance.
Would yes
safely delete those stale entries in contenttype?
ForeignKey
matters indeed. I think I'll have to verify aftersyncdb
to ensure the security. – Insnare