summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2010-08-09[soc2010/query-refactor] Merged up to trunk r13556, resolved merge conflictsarchive/soc2010/query-refactorAlex Gaynor
2010-07-01[soc2010/query-refactor] Fixed a number of issues under postgresql.Alex Gaynor
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
2009-03-04Made it explicit if you accidentally override a Field from a parent model.Malcolm Tredinnick
2009-03-04Fixed #10406 -- Fixed some problems with model inheritance and pk fields.Malcolm Tredinnick
2008-12-09Fixed #9775 -- Fixed an oversight from r9601 and allow direct attributeMalcolm Tredinnick
2008-12-08The first step in fixing a group of problems related to outputting a properMalcolm Tredinnick
2008-11-16Fixed #9608: Ensured a Model's default repr() is printable even if its __unic...Karen Tracey
2008-09-03Fixed #7588 -- Inherit fields from concrete ancestor classes via abstract baseMalcolm Tredinnick
2008-09-03Fixed #8825 -- Fixed a small error model field setup (on the model class) fromMalcolm Tredinnick
2008-09-02Fixed #8309: subclasses now inherit `GenericForeignKey` correctly. There's al...Jacob Kaplan-Moss
2008-09-02Fixed #7154 -- Inherit all model managers from abstract base classes.Malcolm Tredinnick