summaryrefslogtreecommitdiff
path: root/docs/ref/models
AgeCommit message (Collapse)Author
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
2015-04-20Fixed #22394 -- Refactored built-in datetime lookups to transforms.Jon Dufresne
2015-04-20Amended get_all_related_objects() backwards compatible replacement.Neal Todd
2015-04-18Removed DateTimeQuerySet from docs.Tim Graham
Obsolete since refs #23867.
2015-04-18Fixed #23879 -- Allowed model migration skip based on feature/vendorClaude Paroz
Thanks Carl Meyer for the report and review, and Tim Graham for the review.
2015-04-07Fixed typo in docs/ref/models/expressions.txtlampslave
2015-03-29Improved docs for timezone handling for auto_now and auto_now_addChristopher Luc
Thanks djbug for the report and Aymeric Augustin and Carl Meyer for the review.
2015-03-26Fixed #24510 -- Clarified FileField.upload_to docs.Matt Seymour
2015-03-25Fixed #23814 -- Documented apps refactored out of Django.Fabio Natali
2015-03-22Fixed #23814 -- Pointed localflavor documentation to external packageIacopo Spalletti
Edited localflavor doc to point to the external package documentation, leaving just the 'How to migrate' section in Django.
2015-03-22Fixed #24485 -- Allowed combined expressions to set output_fieldJosh Smeaton
2015-03-18Fixed #24495 -- Allowed unsaved model instance assignment check to be bypassed.Karl Hobley
2015-03-17Refs #24485 -- Renamed some expression typesJosh Smeaton
2015-03-17Fixed #15579 -- Added ability to delete only child models in multi-table ↵Andriy Sokolovskiy
inheritance.
2015-03-16Fixed #24486 -- Documented method to provide output_field to mixed F expressionsJosh Smeaton
2015-03-13Refs #24462 -- Emphasized that order_by() clears previous ordering.Tim Graham
2015-03-12Fixed typo in docs/ref/models/fields.txtSteven Das
2015-03-11Fixed #24414 -- Added examples of Prefetch object usage to the docs.Sean Wang
2015-03-09Fixed #24432 -- Added docs for ManyToManyFields that reside in and refer to ↵Floris den Hengst
the same model.
2015-02-20Update converters to take a consistent set of parameters.Marc Tamlyn
As suggested by Anssi. This has the slightly strange side effect of passing the expression to Expression.convert_value has the expression passed back to it, but it allows more complex patterns of expressions.
2015-02-14Fixed #24289 -- Reversed usage of Field.many_to_one and one_to_many.Loic Bistuer
Thanks Carl Meyer and Tim Graham for the reviews and to all involved in the discussion.
2015-02-12Refs #14030 -- Improved expression support for python valuesJosh Smeaton
2015-02-10Disallowed importing concrete models without an application.Aymeric Augustin
Removed fragile algorithm to find which application a model belongs to. Fixed #21680, #21719. Refs #21794.
2015-02-05Fixed #6707 -- Added RelatedManager.set() and made descriptors' __set__ use it.Loic Bistuer
Thanks Anssi Kääriäinen, Carl Meyer, Collin Anderson, and Tim Graham for the reviews.
2015-02-04Fixed typos of "select_related" in docs and tests.Josh Schneier
2015-02-03Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
The method is mainly intended for use with UUIDField. For UUIDField we want to call the field's default even when primary key value is explicitly set to None to match the behavior of AutoField. Thanks to Marc Tamlyn and Tim Graham for review.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-30Fixed #24211 -- Removed ValuesQuerySet() and ValuesListQuerySet().Loic Bistuer
Thanks Anssi Kääriäinen, Marc Tamlyn, and Tim Graham for the reviews.
2015-01-24Fixed #24190 -- Clarified len(queryset)Collin Anderson
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
Kept support for creating models without migrations when running tests (especially for Django's test suite).
2015-01-17Removed support for custom SQL per deprecation timeline.Tim Graham
2015-01-12Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski
2015-01-13Fixed #24060 -- Added OrderBy ExpressionsJosh Smeaton
2015-01-12Fixed #23878 -- Moved Query and Prefetch documentationNg Zhi An