From 41d5ed480cd55a71b739e779ca11f24caaa2b302 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 20 Feb 2015 14:28:34 -0500 Subject: [1.8.x] Fixed #24377 -- Fixed model inline formsets with primary key's that have defaults. Backport of 1306cd1e8acfb13602ee8dc40993b2505cd7523b from master --- tests/model_formsets/models.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/model_formsets/models.py') diff --git a/tests/model_formsets/models.py b/tests/model_formsets/models.py index da79c6a573..0b4963208f 100644 --- a/tests/model_formsets/models.py +++ b/tests/model_formsets/models.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals import datetime +import uuid from django.db import models from django.utils import six @@ -241,3 +242,15 @@ class Post(models.Model): def __str__(self): return self.name + + +# Models for testing UUID primary keys +class UUIDPKParent(models.Model): + uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) + name = models.CharField(max_length=255) + + +class UUIDPKChild(models.Model): + uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) + name = models.CharField(max_length=255) + parent = models.ForeignKey(UUIDPKParent) -- cgit v1.3