Please whitelist me so i can add tickets!



I needed to deactivate the cascading delete, since my db does it
itself and in one case I just wanted to handle it manually.

Example usage:
{{{
class PicThumbnail(models.Model):
     id = models.IntegerField(primary_key=True, db_column='pic_id')
     sizedpic = models.ForeignKey(Sizedpic, do_cascading_delete=False)
     user = models.ForeignKey(User, do_cascading_delete=False)
}}}

patch is attached

-- 
cu

Wolfram


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Attachment: django-cascading-delete.patch
Description: Binary data

Reply via email to