Fixed #20978 -- Made deletion.SET_NULL more friendly for MigrationWriter.serialize.

This commit is contained in:
Loic Bistuer 2013-09-02 01:21:08 +07:00 committed by Tim Graham
parent 0ac7cc3265
commit 5df8f749e6
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,8 @@ def SET(value):
return set_on_delete
SET_NULL = SET(None)
def SET_NULL(collector, field, sub_objs, using):
collector.add_field_update(field, None, sub_objs)
def SET_DEFAULT(collector, field, sub_objs, using):