summaryrefslogtreecommitdiff
path: root/docs/topics/db
AgeCommit message (Collapse)Author
2017-11-23[2.0.x] Linked to prefetch_related_objects func in DB optimization docs.Luke Plant
Backport of e283c1a from master
2017-11-07[2.0.x] Fixed #28770 -- Warned that quoting a placeholder in a raw SQL ↵Tim Graham
string is unsafe. Thanks Hynek Cernoch for the report and review. Backport of 327f0f37ce3c1e5ac3a19668add237ddd92266d6 from master
2017-11-07[2.0.x] Fixed typo in docs/topics/db/aggregation.txt.Tim Graham
Backport of 00b93c2b1ecdda978f067309c6feafda633a7264 from master
2017-10-30[2.0.x] Fixed 'a'/'an' mix-ups in docs.Ville Skyttä
Backport of 617686e226231fe8ad3f2e49d3efabf6f5f434d3 from master
2017-10-13[2.0.x] Removed incorrect reference to ModelChoiceField in Field.choices docs.LeeHanYeong
Backport of 3ffbd54566f51e4ac3d90fc6be8b3ab56fc89b75 from master
2017-09-29[2.0.x] Fixed #28653 -- Added missing ForeignKey.on_delete argument in docs.Stefan Schneider
Backport of 08c8c3ead97893ec0e1dece699525ad7ed27c2d7 from master
2017-09-29[2.0.x] Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.Stefan Schneider
Backport of 293df73fb67a56c0417af8c39f808f64bc03cbeb from master
2017-09-21Refs #28595 -- Added a hook to add execute wrappers for database queries.Shai Berger
Thanks Adam Johnson, Carl Meyer, Anssi Kääriäinen, Mariusz Felisiak, Michael Manfre, and Tim Graham for discussion and review.
2017-09-04Fixed #28479 -- Doc'd that transaction rollback doesn't revert model state.Jonatas CD
2017-09-02Fixed #28332 -- Fixed diamond inheritence example in docs.Jeremy Satterfield
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-12Fixed #23546 -- Added kwargs support for CursorWrapper.callproc() on Oracle.Mariusz Felisiak
Thanks Shai Berger, Tim Graham and Aymeric Augustin for reviews and Renbi Yu for the initial patch.
2017-08-10Fixed #23766 -- Doc'd CursorWrapper.callproc().Mariusz Felisiak
Thanks Tim Graham for the review.
2017-07-18Removed unneeded right quotes in docs to fix spelling errors.Tim Graham
A regression in pyenchant caused a problem: https://github.com/rfk/pyenchant/issues/93
2017-07-11Fixed #28352 -- Corrected QuerySet.values_list() return type in docs examples.Irindu Indeera
2017-07-04Added missing import in docs/topics/db/queries.txt.Tushar Malik
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-26Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
2017-06-06Fixed #28233 -- Used a simpler example in the aggregation "cheat sheet" docs.Tim Graham
2017-05-31Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.Matthias Erll
2017-05-22Updated various links in docs to avoid redirectsClaude Paroz
Thanks Tim Graham and Mariusz Felisiak for review and completion.
2017-04-08Fixed typos in docs/topic/db/search.txt.Paolo Melchiorre
2017-04-01Fixed #28003 -- Doc'd what an auto-created OneToOneField parent_link looks like.Simon Charette
Thanks Simon Charette for the draft patch.
2017-03-20Removed extra characters in docs header underlines.Mariusz Felisiak
2017-03-14Fixed typo in docs/topics/db/aggregation.txt header.Mads Jensen
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-11Fixed typo in docs/topics/db/managers.txt.M Somerville
2017-01-09Removed SHOUTING in doc examples.Maxime Lorant
2017-01-03Fixed #25912 -- Added binary left/right shift operators to F expressions.anabelensc
Thanks Mariusz Felisiak for review and MySQL advice.
2016-12-27Used a nontemporal example in QuerySet.bulk_create() in docs.Tim Graham
2016-12-17Documented how to copy a OneToOneField.Tim Graham
Thanks Anton Gilgur for the report and review.
2016-12-17Refs #25550 -- Removed a deprecated reverse assignment example in docs.Tim Graham
2016-11-16Fixed #27494 -- Fixed typos in docs/topics/db/models.txt.Tim Graham
2016-11-15Refs #25284 -- Corrected an obsolete implicit __in lookup example.Simon Charette
Thanks IRC alias rpkilby for the report.
2016-11-11Fixed typo in docs/topics/db/multi-db.txt.Jezeniel Zapanta
2016-10-31Updated docs/topics/db/queries.txt examples to use print() function.Timothy Allen
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-10-04Refs #11078 -- Doc'd Meta inheritance in proxy models.Jonatas CD
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-07Fixed #27172 -- Closed database cursor explicitly in two doc examplesChris Jerdonek
2016-09-01Refs #25850, #27142, #27110 -- Documented migration history consistency checks.Shai Berger
2016-09-01Refs #27164 -- Fixed typo in docs/topics/db/multi-db.txtTim Graham
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-16Fixed #19222 -- Documented that default managers aren't used for related ↵Tim Graham
queries.
2016-08-15Documented how allow_migrate() interacts with makemigrations.Timothy Allen
2016-08-05Edited multi-db topic guide for grammar and clarity.Liz Lemon
2016-07-25Fixed #26925 -- Linked aggregation ordering topic from Meta.ordering docs.Tim Graham