summaryrefslogtreecommitdiff
path: root/django/db/models/options.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2023-05-051-2/+1
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-0/+1
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-281-0/+2
* Refs #32095 -- Added model's Options._non_pk_concrete_field_names property.sarahboyce2022-09-291-0/+14
* Refs #27236 -- Made cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2022-07-211-1/+2
* Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.David Wobrock2022-07-121-0/+8
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-84/+177
* Fixed #33335 -- Made model validation ignore functional unique constraints.Hannes Ljungberg2021-12-061-1/+5
* Fixed #32996 -- Cached PathInfos on relations.Keryn Knight2021-11-031-1/+1
* Removed unused model's Options.installed.Mariusz Felisiak2021-10-281-4/+0
* Fixed #31007 -- Allowed specifying type of auto-created primary keys.Tom Forbes2020-12-151-2/+35
* Refs #27666 -- Ensured relationship consistency on delayed reloads.Simon Charette2020-04-071-2/+3
* Refs #31187 -- Added total_unique_constraints property to model's Options.Mariusz Felisiak2020-02-191-1/+13
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-3/+1
* Used model's Options.label/label_lower where applicable.Mariusz Felisiak2020-01-291-1/+1
* Fixed #29998 -- Allowed multiple OneToOneFields to the parent model.Mariusz Felisiak2020-01-161-5/+1
* Simplified model's Options.add_field() a bit.Taoup2020-01-071-3/+3
* Refs #29444 -- Allowed returning multiple fields from INSERT statements on Po...Johannes Hoppe2019-09-091-0/+11
* Fixed #30397 -- Added app_label/class interpolation for names of indexes and ...can2019-07-081-0/+18
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-061-2/+2
* Refs #28750 -- Removed suppport for model Meta.manager_inheritance_from_future.Tim Graham2019-01-171-2/+0
* Fixed #11964 -- Added support for database check constraints.Ian Foote2018-07-101-1/+2
* Fixed #8936 -- Added a view permission and a read-only admin.olivierdalang2018-05-161-1/+1
* Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов2018-01-121-6/+4
* Fixed #28750 -- Allowed models to define Meta.manager_inheritance_from_future...Charlie Denton2017-10-311-0/+2
* Refs #27532 -- Removed Model._meta.has_auto_field per deprecation timeline.Tim Graham2017-09-221-15/+0
* Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) s...Nicolas Delaby2017-09-221-1/+9
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-5/+12
* Simplified model's Options._get_fields() a bit.Sergey Fedoseev2017-08-311-7/+3
* Removed unneeded iter() calls.Sergey Fedoseev2017-08-231-1/+1
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-12/+5
* Fixed #28269 -- Fixed Model.__init__() crash on models with a field that has ...Adam Johnson2017-06-051-4/+7
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-1/+1
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-1/+1
* Fixed #28222 -- Allowed settable properties in QuerySet.update_or_create()/ge...Alex2017-05-271-4/+1
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-2/+1
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-15/+11
* Fixed #27742 -- Reverted "Fixed #24607 -- Serialized natural keys in multi-ta...Tim Graham2017-02-111-6/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+2
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Removed Manager.use_for_related_fields and Meta.manager_inheritance_from_future.Tim Graham2017-01-171-28/+2
* Refs #26320 -- Removed implicit OneToOnField parent_link per deprecation time...Tim Graham2017-01-171-4/+3
* Refs #16508 -- Removed virtual aliases of "private fields".Tim Graham2017-01-171-18/+1
* Optimized Model instantiation a bit.Adam Chainz2016-12-151-0/+11
* Fixed #17002 -- Allowed using a ManyToManyField through model that inherits a...InvalidInterrupt2016-12-071-0/+45
* Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz2016-11-251-2/+15