diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-20 14:28:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-23 08:44:27 -0500 |
| commit | 1306cd1e8acfb13602ee8dc40993b2505cd7523b (patch) | |
| tree | c73bb367f295e54403a24b27fe3878c80ef8756e /tests/model_formsets/models.py | |
| parent | 00fbd8fd527fd6ee0319361bf194cd51a1ac1bfb (diff) | |
Fixed #24377 -- Fixed model inline formsets with primary key's that have defaults.
Diffstat (limited to 'tests/model_formsets/models.py')
| -rw-r--r-- | tests/model_formsets/models.py | 13 |
1 files changed, 13 insertions, 0 deletions
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) |
