summaryrefslogtreecommitdiff
path: root/django/db/models/options.py
AgeCommit message (Expand)Author
2012-03-05Fixed #16128 - Correctly cascade-delete proxy models as if they were the conc...Carl Meyer
2012-03-02Edited stuff from [17543] to [17629]Adrian Holovaty
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2011-08-23Fixed #16299 -- Ensure that unicode strings can be used to identify classes i...Russell Keith-Magee
2011-04-27Refs #15093 -- Fixed another get_models call missed in r16053. Thanks Luke fo...Carl Meyer
2011-04-27Fixed #15903 -- Allowed not-installed models to still be referenced in relate...Carl Meyer
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-12Fixed #13987 -- Ensure that the primary key is set correctly for all models t...Russell Keith-Magee
2011-01-28Fixed #15103 - SuspiciousOperation with limit_choices_to and raw_id_fieldsLuke Plant
2011-01-19Fixed #14896 -- Ensured that _meta.get_all_related_objects(include_hidden=Tru...Carl Meyer
2010-11-17Fixed #11369 -- Corrected verbose_name_plural model Meta option to be consist...Ramiro Morales
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-09-26Fixed #13827 -- Cleaned up a few unnecessary function calls.Jannis Leidel
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-04-15Fixed #13328 -- Added a __getstate__/__setstate__ pair to fields so that call...Russell Keith-Magee
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
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-09Fixed #3163 -- Add a "Meta.managed" option to models.Malcolm Tredinnick
2009-03-04Fixed #10251 -- Fixed model inheritance when there's also an explicit pk field.Malcolm Tredinnick
2008-12-11Removed django.db.models.options.Options.one_to_one_field.Malcolm Tredinnick
2008-12-08The first step in fixing a group of problems related to outputting a properMalcolm 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
2008-08-30[8721] introduced some internal field names. We hide them from the list ofMalcolm Tredinnick
2008-08-27Removed oldforms, validators, and related code:Gary Wilson Jr
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-06-29Fixed handling of multiple fields in a model pointing to the same related model.Malcolm Tredinnick
2008-06-29Moved the settings of db_table to Options.contribute_to_class().Malcolm Tredinnick
2008-06-26Fixed the way symmetrical many-to-many relations are recorded in the Options ...Malcolm Tredinnick
2008-06-09Fixed #7350, #7202 -- Fixed serialization for multi-model inheritance, which ...Russell Keith-Magee
2008-06-07Fixed #7342: Ignore any Meta options starting with '_', thus making it OK for...Jacob Kaplan-Moss
2008-04-27When retrieving a field by name, handle a missed case when the cache cannot beMalcolm Tredinnick
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2007-12-02Fixed #3323 -- More robust error handling for related objetcs. Thanks, GregMalcolm Tredinnick
2007-12-01Fixed #6007: Added DEFAULT_TABLESPACE and DEFAULT_INDEX_TABLESPACE Ian Kelly
2007-09-14Fixed #5460 -- unique_together now accepts a single tuple for convenience. Th...Adrian Holovaty
2007-09-14Fixed #5218: Made Oracle create autoinc triggers using the correct name Ian Kelly
2007-08-19Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Ref...Adrian Holovaty
2007-08-18Renamed Cache to AppCache and cache_ready() to app_cache_ready() from [5919] ...Malcolm Tredinnick
2007-08-17Rewrote portions of the app- and model-cache initialisation to handle some co...Malcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-03-19Fixed #3741 -- Fixed serialization of GenericRelations. Thanks for the report...Russell Keith-Magee
2006-07-10Fixed #2301 -- Added list_display_links option to 'class Admin', which regula...Adrian Holovaty
2006-06-25Fixes #1812 -- Added model validity checks to ensure that models.py exists, a...Russell Keith-Magee