Conflicts:
	docs/changelog.rst
This commit is contained in:
Ross Lawley
2012-06-18 21:10:14 +01:00
6 changed files with 44 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ Changelog
Changes in 0.6.X
================
- Added PULL reverse_delete_rule
- Fixed CASCADE delete bug
- Fixed db_field data load error
- Fixed recursive save with FileField

View File

@@ -289,6 +289,10 @@ Its value can take any of the following constants:
:const:`mongoengine.CASCADE`
Any object containing fields that are refererring to the object being deleted
are deleted first.
:const:`mongoengine.PULL`
Removes the reference to the object (using MongoDB's "pull" operation)
from any object's fields of
:class:`~mongoengine.ListField` (:class:`~mongoengine.ReferenceField`).
.. warning::