Changes between Version 3 and Version 4 of Ticket #24381
- Timestamp:
- Feb 21, 2015, 5:32:41 AM (10 years ago)
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.1 In 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. 2 2 3 3 {{{ … … 20 20 }}} 21 21 22 If I try to cache a simple empty QuerySet (MyModel.objec rts.filter(id=0), for example), it works.22 If I try to cache a simple empty QuerySet (MyModel.objects.filter(id=0), for example), it works.