summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2012-09-02[1.4.x] Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
2012-09-01[1.4.x] Fixed #18212 -- Standardized arguments of GenericIPAddressFieldClaude Paroz
2012-04-10[1.4.X] Fixed #18090 -- Applied filters when running prefetch_related backwar...Aymeric Augustin
2012-03-22Used SortedDict instead of dict to avoid random errors that may occur when di...Aymeric Augustin
2012-03-17Fixed #17918 - Handle proxy models correctly when sorting deletions for datab...Carl Meyer
2012-03-13Fixed #10498 (again) -- Made sure the improvements done in r17641 have a smal...Jannis Leidel
2012-03-12Fix #17876: Corrected an exception (regression) raised where select_realted a...Karen Tracey
2012-03-05Fixed #16128 - Correctly cascade-delete proxy models as if they were the conc...Carl Meyer
2012-03-03Fixed #10498 -- Fixed using ugettext_lazy values when creating model instance...Jannis Leidel
2012-03-02Edited stuff from [17543] to [17629]Adrian Holovaty
2012-03-01Fixed #17696 - Queryset prefetch_related() ignores using()Luke Plant
2012-02-28Fixed #17668 - prefetch_related does not work in in_bulkLuke Plant
2012-02-22Fixed #17728 -- When filtering an annotation, ensured the values used in the ...Aymeric Augustin
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2012-02-09Fixed #17219 -- Updated model field descriptions to be more precise. Thanks, ...Jannis Leidel
2012-02-05Fixed #11670 -- Prevented genuine model fields named 'year', 'month', 'gt', '...Julien Phalip
2012-02-04Fixed #17527 -- Improved exception message when adding the wrong type of obje...Jannis Leidel
2012-01-24Added a missing warning forgotten in r17392.Jannis Leidel
2012-01-24Fixed #17580 -- Made sure datetime.date instances are correctly handled when ...Jannis Leidel
2012-01-03Fixed #17429 -- Ensured that `Meta.ordering=None` works the same if it were a...Julien Phalip
2012-01-02Fixed #16340 -- Made `get_or_create()` re-raise any `IntegrityError` with its...Julien Phalip
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-12-09Fixed #16818 -- Fixed ORM bug with many-to-many add() method where it wasn't ...Adrian Holovaty
2011-12-05Fixed #17335 -- Added supports_select_related hook for django-nonrel. Thanks,...Adrian Holovaty
2011-11-29Small code clarification in prefetch_related code using better variable namesLuke Plant
2011-11-25Fixed #17294 -- Supported nullable DateTimeFields when time zone support is e...Aymeric Augustin
2011-11-19Fixed #17263 -- Added a warning when a naive datetime reaches the database la...Aymeric Augustin
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-11-13Fixed #13640: Avoid generating an exception when a model has an attribute nam...Karen Tracey
2011-11-12Fix #13864: Removed database error raised when force_update is requsted on sa...Karen Tracey
2011-10-18Remove all relative imports. We have always been at war with relative imports.Alex Gaynor
2011-10-17Remove several more relative imports.Alex Gaynor
2011-10-16Fixed #17056 -- Tweaked insert SQL clause generation so a corner case doesn't...Ramiro Morales
2011-10-14Fixed #12308 -- Added tablespace support to the PostgreSQL backend.Aymeric Augustin
2011-10-13Fixed #16906 -- Format datetimes with str/unicode instead of strftime where p...Aymeric Augustin
2011-10-13Fixed a couple of `assert` syntax warnings mistakingly introduced in r16966 a...Julien Phalip
2011-10-13Fixed #12467 -- Made the model data validation for `DateField` and `DateTimeF...Julien Phalip
2011-10-08More efficient IN clauses for prefetch_related queries by use of sets to elim...Luke Plant
2011-10-07Fixed #17014 - added protection against infinite recursion.Luke Plant
2011-10-07Fixed #17003 - prefetch_related should support foreign keys/one-to-oneLuke Plant
2011-10-06Removed ForeignRelatedObjectsDescriptor.RelatedManager.delete_manager, which ...Luke Plant
2011-10-05Fixed #16937 - added `QuerySet.prefetch_related` to prefetch many related obj...Luke Plant
2011-10-05Fixed #16902 - select_related() results in a poor perfomanceLuke Plant
2011-09-30Fixed #14270 - related manager classes should be cachedLuke Plant
2011-09-29Cleanups to related manager code, especially in use of closures.Luke Plant
2011-09-29Small cleanups of 'related manager' code for consistencyLuke Plant
2011-09-26Removed unused parameter 'join_table' in various bits of RelatedManager codeLuke Plant
2011-09-22Fixed #7198 (again) -- Corrects a problem with string interpolation from r168...Gabriel Hurley
2011-09-22Fixed #7198 -- Improved error message when missing models.py. Thanks Silver_G...Paul McMillan