summaryrefslogtreecommitdiff
path: root/docs/ref/models
AgeCommit message (Collapse)Author
2015-12-01[1.9.x] Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
2015-11-30[1.9.x] Removed old versionadded/changed directives.Sergey Fedoseev
Backport of da08195b368054d37f85c12ec4ed24656f64245e from master
2015-11-24[1.9.x] Clarified default value for DateField to emulate auto_now_add.Bulgantamir Gankhuyag
Backport of 8bce6fa637952342278c59d06520611e3ba80cbb from master
2015-11-19[1.9.x] Corrected GenericIPAddressField protocol parameter doc.areski
Backport of 1e7da99ea6a78c47d3b5d4e9ce82df1ee4024ada from master
2015-11-12[1.9.x] Replaced "inbuilt" with more common "built-in".Tim Graham
Backport of a8f05f405f8b78e13d7c4c9ffd73d6182b6fc4d5 from master
2015-11-03[1.9.x] Fixed #25132 -- Documented how to retrieve a single value using ↵Alex Morozov
values_list() and get(). Backport of 4373eac99828d99718a7b245d160e7e64fce2e95 from master
2015-10-30[1.9.x] Fixed #21422 -- Documented that prefetch_related() results must be ↵Tim Graham
homogeneous. Backport of 69239c0f968ee55cb9ca1e31323fb696db0c2aec from master
2015-10-13[1.9.x] Fixed typo in docs/ref/models/relations.txt.Tim Graham
Backport of f6b9e6bf4fab731a28489ec735cc330255ef03ab from master
2015-09-25[1.9.x] Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham
@python_2_unicode_compatible. Backport of de99f558d806a2a1b30072ec95bc44d412d80dab from master
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-09-21Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton
2015-09-18Made assorted improvements to the Oracle documentation.Mariusz Felisiak
2015-09-11Fixed #25382 -- Removed obsolete references to DateQuerySet.Renato Oliveira
2015-09-03Documented a limitation of Options.required_db_features.Tim Graham
2015-08-13Fixed #24988 -- Documented passing a dictionary of ValidationErrors to ↵Adam Brenecki
ValidationError
2015-08-10Fixed #25160 -- Moved unsaved model instance data loss check to Model.save()Tim Graham
This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review.
2015-08-07Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede
2015-08-05Fixed #25213 -- Discouraged use of QuerySet.extra()Tim Graham
Thanks Anssi Kääriäinen for the draft text and Simon Charette for review.
2015-08-05Fixed #25212 -- Documented the RawSQL expression.Tim Graham
2015-07-31Removed unnecessary F() from Func expressions docsAlasdair Nicol
2015-07-27Refs #18556 -- Fixed a typo in the related manager add() method docs.Simon Charette
2015-07-28Fixed #18556 -- Allowed RelatedManager.add() to execute 1 query where possible.Tim Graham
Thanks Loic Bistuer for review.
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-07-21Fixed #25129 -- Made model instance defaults work with migrations (refs #24919).Tim Graham
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
Thanks Flavio Curella and Berker Peksag for the initial patch.
2015-07-03Fixed mistake in Model.from_db() example.Luke
2015-07-02Fixed #24997 -- Enabled bulk_create() on proxy modelsWilliam Schwartz
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-19Fixed #24881 -- Clarified Meta.order_with_respect_to documentationjohannes.linke
2015-06-15Fixed #24894 -- Added contrib.postgres.functions.TransactionNowAdam Chainz
2015-06-09Clarified the default form widgets for model number fields in docsMatt Deacalion Stevens
2015-06-08Fixed #24952 -- Fixed example SQL in Func() expressions docsAlasdair Nicol
2015-06-05Minor edits to Greatest/Least docs; refs #24767.Tim Graham
2015-06-05Fixed #22571 -- Added clarification about auto_now_add=TrueYamila Moreno
2015-06-05Capitalized "Python" in docs.Tim Graham
2015-06-05Fixed #24925 -- Document using Coalesce on MySQLIan Foote
Add warning for using Coalesce with python values on MySQL and document workaround.
2015-06-05Fixed #24767 -- Added Greatest and Least expressionsIan Foote
Greatest and Least are row-level Function versions of Min and Max.
2015-06-04Fixed #22316 -- Added time filters to TimeField on SQLite.Matthew Somerville
This was implemented for non-SQLite backends in 1.7 (as a side effect of #16187).
2015-06-02Fixed #24866 -- Added Now() database functionAdam Chainz
2015-06-02Fixed #9596 -- Added date transform for DateTimeField.Jon Dufresne
2015-06-01Fixed #24880 -- Added more explicit docs on select_for_update() on SQLite.Przemysław Suliga
2015-05-22Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted ↵Alexander Sosnovskiy
objects.
2015-05-08Fixed #24763 -- Moved DoesNotExist exception to model docs.David Krisch
2015-05-07Fixed typo in docs/ref/models/expressions.txtIan Foote
2015-05-02Fixed #24693 -- Added label and label_lower property to Model._metaLuis Del Giudice
2015-04-29Fixed #24665 -- Clarified model field flag defaults.Tim Graham
2015-04-25Fixed #24649 -- Allowed using Avg aggregate on non-numeric field types.Tim Graham
2015-04-24Fixed #24656 -- Added missing imports to query expressions doc.Nicolas Noé
2015-04-22Fixed #24613 -- Added example to QuerySet.defer() documentationRichard Eames