mirror of
https://github.com/django/django.git
synced 2025-11-24 21:00:12 +00:00
Fixed #29129 -- Skipped UPDATE when adding a model instance with inherited primary key that has a default.
This commit is contained in:
parent
7e15795bf0
commit
babd412685
3 changed files with 14 additions and 4 deletions
|
|
@ -46,3 +46,7 @@ class SelfRef(models.Model):
|
|||
|
||||
class PrimaryKeyWithDefault(models.Model):
|
||||
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4)
|
||||
|
||||
|
||||
class ChildPrimaryKeyWithDefault(PrimaryKeyWithDefault):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue