summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
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
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-03Edited model check messages for grammar and consistency.Russell Keith-Magee
2014-02-10Fixed #17673 -- Forbid field shadowing.Christopher Medrela
2014-02-08Fixed #16192 -- Made unique error messages in ModelForm customizable.Loic Bistuer
2014-01-26Fixed #21877 -- Renamed django.apps.base to config.Aymeric Augustin
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2014-01-19Fixed #21664: Multi-table inheritance was duplicating _ptr fieldsAndrew Godwin
2014-01-18Fixed #21794 -- Adjusted warning for abstract models.Aymeric Augustin
2014-01-10Deprecated importing a model before loading its application.Aymeric Augustin
2014-01-05Fixed #21711 -- Enforced unicity of model names.Aymeric Augustin
2013-12-31Made it possible to change an application's label in its configuration.Aymeric Augustin
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Renamed has_model to get_registered_models.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Renamed registered_model to has_model.Aymeric Augustin
2013-12-22Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin
2013-12-22Refactored registration of models.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Simplified register_models.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-11-30Fixed #20867 -- Added the Form.add_error() method.Loic Bistuer