Changes between Version 2 and Version 4 of Ticket #24605


Ignore:
Timestamp:
Apr 9, 2015, 8:26:34 AM (9 years ago)
Author:
Tim Graham
Comment:

Bisected to 01f2cf2aecc932d43b20b55fc19a8fa440457b5f. 1.7.x is now in security-fix only mode, but we can fix in 1.8.x.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24605

    • Property Keywords regression added; regresion removed
    • Property Severity NormalRelease blocker
    • Property Triage Stage UnreviewedAccepted
  • Ticket #24605 – Description

    v2 v4  
    55{{{
    66class Bmodel(models.Model):
    7     pass
     7    is_active = models.BooleanField()
    88
    99class Amodel(models.Model):
     10    active = models.BooleanField()
    1011    bmodel = models.ForeignKey(Bmodel, related_name='Amodel_bmodel')
    1112
     
    5657[...results...]
    5758}}}
    58 
Back to Top