summaryrefslogtreecommitdiff
path: root/docs/ref/models
AgeCommit message (Collapse)Author
2017-10-28Refs #28010 -- Allowed reverse related fields in SELECT FOR UPDATE .. OF.Ran Benita
Thanks Adam Chidlow for polishing the patch.
2017-10-25Fixed typo in docs/ref/models/querysets.txt.Botond Beres
2017-10-25Fixed #28395 -- Doc'd that QuerySet.first() can affect aggregation queries.Botond Beres
2017-10-17Fixed typo in docs/ref/models/querysets.txt.Jozef
2017-10-13Refs #28643 -- Reorganized database functions docs.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-10-03Fixed #28584 -- Dropped support for SQLite < 3.7.15.Tim Graham
2017-09-29Fixed #28653 -- Added missing ForeignKey.on_delete argument in docs.Stefan Schneider
2017-09-27Clarified StrIndex docs example.Miguel
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-09-22Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) ↵Nicolas Delaby
support. Thanks Anssi Kääriäinen for contributing to the patch.
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
Thanks Josh Smeaton, Mariusz Felisiak, Sergey Fedoseev, Simon Charettes, Adam Chainz/Johnson and Tim Graham for comments and reviews and Jamie Cockburn for initial patch.
2017-09-06Fixed #28561 -- Removed inaccurate docs about QuerySet.order_by() and joins.Tim Graham
As of ccbba98131ace3beb43790c65e8f4eee94e9631c, both examples don't use a join.
2017-09-06Fixed #15648 -- Allowed QuerySet.values_list() to return a namedtuple.Sergey Fedoseev
2017-09-05Fixed #11557 -- Added support for a list of fields in Meta.get_latest_by and ↵François Freitag
QuerySet.earliest()/latest().
2017-09-05Fixed #28335 -- Allowed query expressions in Meta.ordering.Dima Kudosh
2017-09-04Fixed #28568 -- Fixed typo in docs/ref/models/database-functions.txt.Michael
And made an example use naming consistent with the rest of the doc.
2017-09-01Fixed #28557 -- Fixed ForeignKey/OneToOneField/ManyToManyField argument name ↵Tim Graham
in docs.
2017-08-14Clarified Concat example in docs.Mathieu Hinderyckx
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-08Fixed #28471 -- Clarified that Meta.indexes is preferred to index_together.Tim Graham
2017-08-07Fixed #28466 -- Clarified the definition of a lazy relationship.Tim Graham
2017-07-21Fixed #27970 -- Allowed QuerySet.in_bulk() to fetch on fields besides ↵Tom Carrick
primary key.
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and ↵Tim Graham
Expression.convert_value(). Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-07-18Doc'd the need to remove default ordering on Subquery aggregates.Tomer Chachamu
2017-07-15Fixed #28399 -- Fixed QuerySet.count() for union(), difference(), and ↵Florian Apolloner
intersection() queries.
2017-07-11Refs #28352 -- Corrected another QuerySet.values_list() return type in docs ↵Tim Graham
example.
2017-07-11Fixed #28352 -- Corrected QuerySet.values_list() return type in docs examples.Irindu Indeera
2017-06-29Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().Ran Benita
2017-06-28Fixed #27473 -- Added DurationField support to Extract.Daniel Hahler
2017-06-27Fixed #28046 -- Added the db_tablespace parameter to class-based indexes.Mariusz Felisiak
Thanks Markus Holtermann and Tim Graham for reviews.
2017-06-19Fixed #18485 -- Doc'd behavior of PostgreSQL when manually setting AutoField.François Freitag
2017-06-13Fixed #27434 -- Doc'd how to raise a model validation error for a field not ↵Matthias Kestenholz
in a model form.
2017-06-09Fixed typo in docs/ref/models/querysets.txt.Tim Graham
2017-06-08Fixed #28103 -- Added quarter extract, truncation, and lookup.Mads Jensen
Thanks Mariusz Felisiak, Tim Graham, and Adam Johnson for review.
2017-06-08Refs #25240 -- Added ExtractWeek examples.Mads Jensen
2017-06-02Fixed #28266 -- Fixed typo in docs/ref/models/instances.txt.Lachlan Musicman
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag
2017-06-01Clarified QuerySet.iterator()'s docs on server-side cursors.François Freitag
2017-05-06Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL.François Freitag
When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case.
2017-04-25Removed nonexistent methods from File's docs.Josh Schneier
read() and write() were removed in 68a890e79f660484d05482902663b6168f0bd71e.
2017-04-11Updated docs after changing select_for_update() to raise NotSupportedError.Ran Benita
Follow up to 054a44d6f0f75395bd02a21e31ea904a24750a2b.
2017-04-10Fixed #27947 -- Doc'd that model Field.error_messages often don't propagate ↵Taavi Teska
to forms.
2017-04-05Fixed #28025 -- Fixed typo in docs/ref/models/querysets.txt.Sudhanshu Mishra
2017-04-03Refs #27834 -- Removed Value wrapping from StrIndex's substring param.Adam Johnson
2017-03-20Removed extra characters in docs header underlines.Mariusz Felisiak
2017-03-16Removed self from method signatures in docs.Alasdair Nicol
2017-03-15Fixed incorrect import in docs/ref/models/expressions.txt.lb1c
2017-03-14Fixed #27834 -- Added StrIndex database function.Brad Melin
2017-02-24Made a few queryset lookup examples consistent.Alexkane
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.