I have revision 10865, and use postgresql. I've noticed that with models like this:
class Edition(models.Model): name = models.CharField(max_length=25) class Email(models.Model) edition = models.ForeignKey(Edition,null=True,blank=True) If I delete an edition (edition.delete()), it deletes all the emails associated with it. I thought it was just supposed to set the foreign key to null. Am I wrong in my thinking or doing something incorrect? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
