summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Removed Manager.use_for_related_fields and Meta.manager_inheritance_from_future.Tim Graham
2016-12-15Optimized Model instantiation a bit.Adam Chainz
2016-12-05Refs #27025 -- Fixed Python 3.6 deprecation warning for empty model super() c...Tim Graham
2016-11-25Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz
2016-11-24Improved the way Model.save() skips the auto_field.Adam Chainz
2016-11-22Fixed #27295 -- Added a system check to prohibit model names that start or en...Quentin Fulsher
2016-11-20Fixed #27512 -- Removed unused code in Model.__init__().Adam Chainz
2016-11-20Refs #26207 -- Removed obsolete comments about deferred model classes.Adam Chainz
2016-11-20Fixed #27514 -- Tested Model.__init__ excessive number of fields.Adam Chainz
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-10-11Replaced '__' with LOOKUP_SEP constant.Nick Pope
2016-08-05Fixed #26808 -- Added Meta.indexes for class-based indexes.Akshesh
2016-06-30Fixed #25292 -- Fixed crash in ManyToManyField.through_fields check.Andrew Nester
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
2016-05-18Fixed #26620 -- Made Model.refresh_from_db() fail when passed unknown kwargs.Marti Raudsepp
2016-05-17Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify models...Loïc Bistuer
2016-05-17Fixed #20932, #25897 -- Streamlined manager inheritance.Loïc Bistuer
2016-05-16Fixed #24305 -- Allowed overriding fields on abstract models.Aron Podrigal
2016-05-03Refs #16508 -- Made Model.__init__() aware of virtual fields.Michal Petrucha
2016-04-29Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-30Fixed #11560 -- Allowed proxy model multiple-inheritance from the same concre...Akshesh
2016-03-28Fixed #26413 -- Fixed a regression with abstract model inheritance and explic...Simon Charette
2016-02-12Removed unneeded hint=None/obj=None in system check messages.Tim Graham
2016-02-08Refs #24007 -- Removed an apps.populate() call in model unpickling that can c...Tim Graham
2016-01-22Fixed #25910 -- Rejected read-only property names in model constructors.Joshua Phillips
2015-12-24Fixed #25984 -- Corrected RuntimeError message in ModelBase.__new__().Varun Sharma
2015-11-21Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey w/on_delete=SET...Tim Graham
2015-11-11Fixed #25730 -- Made Model.__str__() always return str instances.Simon Charette
2015-10-12Refs #18012 -- Removed the now unused proxied_children model option.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