1
0
mirror of https://github.com/django/django.git synced 2025-04-15 04:44:37 +00:00

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

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):