summaryrefslogtreecommitdiff
path: root/docs/topics/db
AgeCommit message (Collapse)Author
2018-07-24[2.1.x] Fixed #29591 -- Fixed numbering words in ↵Tim Graham
docs/topics/db/examples/many_to_many.txt. Backport of cef8f6a61bc8079fa36cb37a7d411b56869ffe32 from master
2018-07-19[2.1.x] Fixed IntegrityError in docs/topics/db/examples/many_to_one.txt.Tim Graham
Backport of 6b6bdfe25c946ee9512b3866d64930fe1be619fd from master
2018-06-28[2.1.x] Refs #29513 -- Linked the testing docs from the multi-db topic guide.Mattia Cattarinussi
Backport of 2a0116266c4d81bd1cc4e3ea20efe9a7874f481b from master
2018-05-12Alphabetized imports in various docs.Mariusz Felisiak
Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f.
2018-04-23Fixed #29349 -- Doc'd the default behavior of router.allow_relation().Stefan R. Filipek
2018-04-19Fixed #29337 -- Added __len__() & __bool__() to RawQuerySet.Adnan Umer
2018-04-19Fixed #29339 -- Added result caching to RawQuerySet.Adnan Umer
2018-04-11Fixed typo in docs/topics/db/managers.txt.Luoxzhg
2018-04-10Fixed mistakes in docs/topics/db/examples/many_to_one.txt.Luoxzhg
2018-03-20Fixed #28514 -- Clarifed docs about idempotence of RelatedManager.add().Jezeniel Zapanta
2018-03-20Refs #11278 -- Clarified RelatedManager differences between reverse ↵Denis
one-to-many and many-to-many relations.
2018-03-13Fixed #29192 -- Corrected docs regarding overriding fields from abstract ↵ovalseven8
base classes.
2018-01-07Updated various links in docs to use HTTPS.Mariusz Felisiak
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-23Linked to prefetch_related_objects func in DB optimization docs.Luke Plant
2017-11-07Fixed #28770 -- Warned that quoting a placeholder in a raw SQL string is unsafe.Tim Graham
Thanks Hynek Cernoch for the report and review.
2017-11-07Fixed typo in docs/topics/db/aggregation.txt.Tim Graham
2017-10-30Fixed 'a'/'an' mix-ups in docs.Ville Skyttä
2017-10-13Removed incorrect reference to ModelChoiceField in Field.choices docs.LeeHanYeong
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-29Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.Stefan Schneider
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
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.