Ticket #17310: kill_test.patch
File kill_test.patch, 632 bytes (added by , 13 years ago) |
---|
-
models.py
old new 5 5 6 6 class Award(models.Model): 7 7 name = models.CharField(max_length=25) 8 object_id = models.PositiveIntegerField()9 content_type = models.ForeignKey(ContentType)10 content_object = generic.GenericForeignKey( )8 app_object_id = models.PositiveIntegerField() 9 app_content_type = models.ForeignKey(ContentType) 10 content_object = generic.GenericForeignKey('app_content_type', 'app_object_id') 11 11 12 12 class AwardNote(models.Model): 13 13 award = models.ForeignKey(Award)