Changes between Version 3 and Version 4 of Ticket #24381


Ignore:
Timestamp:
Feb 21, 2015, 5:32:41 AM (9 years ago)
Author:
Mark Tranchant
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24381 – Description

    v3 v4  
    1 In 1.7.4, I can run the following transcript in ../manage.py shell. The Contributor model has two ForeignKeys, to MyModel and Task, so I'm looking up all MyModels which have a referring contributor associated with task 4.
     1In 1.7.4 (and prior versions back to at least 2011), I can run the following transcript in ../manage.py shell. The Contributor model has two ForeignKeys, to MyModel and Task, so I'm looking up all MyModels which have a referring contributor associated with task 4.
    22
    33{{{
     
    2020}}}
    2121
    22 If I try to cache a simple empty QuerySet (MyModel.objecrts.filter(id=0), for example), it works.
     22If I try to cache a simple empty QuerySet (MyModel.objects.filter(id=0), for example), it works.
Back to Top