[1.8.x] Refs #24698, #24712 -- Forwardported ForeignKey.get_db_prep_value() test and release notes.

Fixed in master by b68212f539.

Forwardport of 290c9d6654 from stable/1.8.x
This commit is contained in:
Abhaya Agarwal 2015-05-13 02:34:56 +05:30 committed by Tim Graham
parent f7b2978158
commit 7c7b855106
3 changed files with 19 additions and 1 deletions

View file

@ -373,3 +373,11 @@ class PrimaryKeyUUIDModel(models.Model):
class RelatedToUUIDModel(models.Model):
uuid_fk = models.ForeignKey('PrimaryKeyUUIDModel')
class UUIDChild(PrimaryKeyUUIDModel):
pass
class UUIDGrandchild(UUIDChild):
pass