mirror of
https://github.com/django/django.git
synced 2024-12-26 02:56:25 +00:00
Tweaked the unset primary key check from [5933] to accommodate models created in the oldforms style. It's a backwards-compatibility hack that we can remove when oldforms go away. See #2160 for discussion. Fixed #5204, #2160. Refs #5102.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6ed780d796
commit
390e91db51
@ -209,7 +209,9 @@ class Model(object):
|
|||||||
|
|
||||||
# First, try an UPDATE. If that doesn't update anything, do an INSERT.
|
# First, try an UPDATE. If that doesn't update anything, do an INSERT.
|
||||||
pk_val = self._get_pk_val()
|
pk_val = self._get_pk_val()
|
||||||
pk_set = pk_val is not None
|
# Note: the comparison with '' is required for compatibility with
|
||||||
|
# oldforms-style model creation.
|
||||||
|
pk_set = pk_val is not None and pk_val != u''
|
||||||
record_exists = True
|
record_exists = True
|
||||||
if pk_set:
|
if pk_set:
|
||||||
# Determine whether a record with the primary key already exists.
|
# Determine whether a record with the primary key already exists.
|
||||||
|
Loading…
Reference in New Issue
Block a user