summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2015-11-21[1.9.x] Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey w/on_de...Tim Graham
2015-11-11[1.9.x] Fixed #25730 -- Made Model.__str__() always return str instances.Simon Charette
2015-09-19Fixed #25296 -- Prevented model related object cache pollution when create() ...Raphael Merx
2015-08-27Fixed #24201 -- Added order_with_respect_to support to GenericForeignKey.Alex Hill
2015-08-25Fixed #14217 -- Added validation for field name collision when using model in...sarthakmeh
2015-08-10Fixed #25160 -- Moved unsaved model instance data loss check to Model.save()Tim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-05-22Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted obj...Alexander Sosnovskiy
2015-05-02Fixed #24693 -- Added label and label_lower property to Model._metaLuis Del Giudice
2015-04-09Fixed #24578 -- Fixed crash with QuerySet.update() on FK to O2O fields.Tim Graham
2015-03-25Fixed #24215 -- Refactored lazy model operationsAlex Hill
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-03-25Renamed ForeignObject.related_field to target_fieldAnssi Kääriäinen
2015-03-21Fixed #24479 -- Added system check to prevent both ordering and order_wrt.Jon Dufresne
2015-03-17Fixed #15579 -- Added ability to delete only child models in multi-table inhe...Andriy Sokolovskiy
2015-02-27Fixed #24418 -- Prevented crash in refresh_from_db with null fkClaude Paroz
2015-02-20Fixed #24328 -- cleaned up Options._get_fields() implementationAnssi Kääriäinen
2015-02-20Fixed #24351, #24346 -- Changed the signature of allow_migrate().Loic Bistuer
2015-02-10Disallowed importing concrete models without an application.Aymeric Augustin
2015-02-09Removed unnecessary parentheses in model check messages.Tim Graham
2015-02-09Fixed #24249 -- Improved field shadowing validation in model multi-inheritance.Aron Podrigal
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #15321 -- Honored ancestors unique checks.Aron Podrigal
2015-02-03Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
2015-01-19Advanced deprecation warnings for Django 1.9.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2015-01-02Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon
2014-12-17Fixed #24007 -- Ensure apps registry's ready before unpickling modelsClaude Paroz
2014-12-15Changed internal storing of abstract and concrete managers to be in a single ...Markus Holtermann
2014-11-28Fixed #901 -- Added Model.refresh_from_db() methodAnssi Kääriäinen
2014-11-19Fixed #21794 -- Removed deprecation warning for abstract models outside an app.Carl Meyer
2014-11-16Fixed #21612 -- Made QuerySet.update() respect to_fieldKaren Tracey
2014-11-12Fixed #22967 -- Made Model._do_update consistentJozef Knaperek
2014-09-09Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that don't defin...Tim Graham
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-07-14Fixed name of database connection featureShai Berger
2014-07-01Fixed #19501 -- added Model.from_db() methodAnssi Kääriäinen
2014-06-23Fixed problem introduced with #refs 13711.Anubhav Joshi
2014-06-17Fixed #13711 -- Model check added to ensure that auto-generated column name i...Anubhav Joshi
2014-06-11Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets f...Anubhav Joshi
2014-06-02Fixed #22690 -- Added a check for proxy models containing fields.Craig de Stigter
2014-06-01Fixed #22711 -- Adjusted ordering checks to allow implicit relation fields.Vincent-Vega
2014-05-16Fixed typo.Tim Graham
2014-05-16Fixed #18389 -- Fixed the way contribute_to_class is calledVlad Starostin
2014-05-01Fixed #22539 -- Copied exclude argument in Model.full_clean() to prevent side...Yehonatan Daniv
2014-04-29Use the new implementation of `six.with_metaclass`.Simon Charette
2014-04-21Appeased flake8 2.1.0.Aymeric Augustin
2014-04-14Fixed #22356 -- Added a check to make sure unique_together fields are local.Marc Egli
2014-04-05Fixed #22236 -- Removed inappropriate usage of signalsClaude Paroz
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin