summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2012-03-13Fixed #10498 (again) -- Made sure the improvements done in r17641 have a smal...Jannis Leidel
2012-03-03Fixed #10498 -- Fixed using ugettext_lazy values when creating model instance...Jannis Leidel
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2011-11-12Fix #13864: Removed database error raised when force_update is requsted on sa...Karen Tracey
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-09Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales
2011-06-09Fixed #8913 - Make "must be unique" error messages customisable. Thanks to Le...Andrew Godwin
2011-04-20Fixed #15866, #15850 -- Prevented get_model() and get_models() from returning...Carl Meyer
2011-04-02Fixed #15743 -- Fixed tense in a docstring in db/models/base.py. Thanks, jMylesAdrian Holovaty
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
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