summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2011-03-14Fixed #15601 -- Corrected a weird typo. Thanks, jMylesAdrian Holovaty
2011-01-26Fixed #13206 -- call super().__init__() in Model.__init__ to allow mixins to ...Alex Gaynor
2011-01-09Fixed #14951 -- Made the unique_for_{date,month,year} model field constraints...Ramiro Morales
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-18Fixed #14234 -- Re-validating a model instance added via ModelForm no longer ...Carl Meyer
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-10-08Fixed #13241. order_with_respect_to now works with ForeignKeys who refer to ...Alex Gaynor
2010-09-26Fixed #13827 -- Cleaned up a few unnecessary function calls.Jannis Leidel
2010-09-11Better error message for calling get_next_by_* on unsaved models.Malcolm Tredinnick
2010-08-17Fixed #14102 -- Ensure that fields that have been excluded from a form aren't...Russell Keith-Magee
2010-08-07Fixed #13552 -- Added a 'using' parameter to database signals. Thanks to gman...Russell Keith-Magee
2010-05-11Fixed #13513 -- Ensured that queries collecting deleted objects are issued on...Russell Keith-Magee
2010-04-30Fixed #13449 -- Corrected typo in comment. Thanks stephaner.Russell Keith-Magee
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-03-16Fixed #12881: Corrected handling of inherited unique constraints. Thanks for ...Karen Tracey
2010-03-15Fixed #12953 -- Ensure that deletion cascades through generic relations. Also...Russell Keith-Magee
2010-03-12Fixed #11891 -- Ensured that attributes of get_absolute_url are preserved thr...Russell Keith-Magee
2010-02-26Fixed #6191, #11296 -- Modified the admin deletion confirmation page to use t...Russell Keith-Magee
2010-02-24Fixed #12152. DoesNotExist and MultipleObjectsReturned now subclass their par...Joseph Kocherhans
2010-02-10Fixed #12647. Allow unique_together checks be specified as lists as well as t...Joseph Kocherhans
2010-01-22Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee
2010-01-14Fixed #12560. Changed validate_unique to stop checking null primary key value...Joseph Kocherhans
2010-01-12Fixed some bad indentationLuke Plant
2010-01-12Fixed #12512. Changed ModelForm to stop performing model validation on fields...Joseph Kocherhans
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2010-01-10Fixed #12537 -- Fixed error in Model.full_validate(). Thanks, gaussAdrian Holovaty
2010-01-05Fixed another instance like [12099]. Thanks again, Alex Gaynor.Joseph Kocherhans
2010-01-05Fixed a regression in validate_unique introduced in [12098]. Thanks, Alex Gay...Joseph Kocherhans
2010-01-05Merged soc2009/model-validation to trunk. Thanks, Honza!Joseph Kocherhans
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-11-11Fixed #12163 -- Corrected the unpickling of non-deferred models. Thanks to rf...Russell Keith-Magee
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
2009-11-01Fixed #12121 -- Modified __reduce__ on a model to avoid an infinite recursion...Russell Keith-Magee
2009-10-29Fixed #12057 -- Corrected regression of caching performance when a model cont...Russell Keith-Magee
2009-10-24Fixed #11402: added a `QuerySet.exists()` method. Thanks, Alex Gaynor.Jacob Kaplan-Moss
2009-06-08Fixed #11194 -- Corrected loading of Proxy models from fixtures (and, by exte...Russell Keith-Magee
2009-06-08Fixed #10672 -- Altered save_base to ensure that proxy models send a post_sav...Russell Keith-Magee
2009-05-19Fixed #11116 -- Corrected the deletion of proxy objects. Thanks to Samuel Ada...Russell Keith-Magee
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-04-04Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick
2009-03-22Fixed deferred loading of fields with default values.Malcolm Tredinnick
2009-03-20Fixed #2698 -- Fixed deleting in the presence of custom managers.Malcolm Tredinnick
2009-03-20Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-15Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-03-10Fixed #10443 -- Fixed model attribute updating after r10003.Malcolm Tredinnick
2009-03-09Pass values through get_db_prep_save() in a QuerySet.update() call.Malcolm Tredinnick
2009-03-06Fixed #9649 -- Better error handling in model creation.Malcolm Tredinnick