summaryrefslogtreecommitdiff
path: root/django/db/models/fields/related.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #16055 -- Deprecated get_joining_columns()/get_reverse_joining_columns()...David Wobrock2023-04-181-0/+12
* Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation ...David Wobrock2023-04-181-0/+8
* Refs #28329 -- Fixed Cast() with ForeignKey to integer fields on MySQL.David Wobrock2023-03-141-0/+3
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-3/+0
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-181-1/+1
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-281-0/+8
* Removed unnecessary ForeignKey.get_reverse_path_info().Mariusz Felisiak2022-11-181-16/+0
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed #29799 -- Allowed registering lookups per field instances.Allen Jonathan David2022-09-021-1/+1
* Refs #32948, Refs #32946 -- Used Q.create() internally for dynamic Q() objects.Nick Pope2022-07-271-4/+5
* Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock2022-05-021-1/+6
* Refs #31223 -- Added __class_getitem__() to ForeignKey.Collin Anderson2022-04-221-0/+3
* Fixed #33515 -- Prevented recreation of migration for ManyToManyField to lowe...Mariusz Felisiak2022-02-161-3/+7
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-12/+30
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-338/+547
* Corrected return value of ForeignKey.db_check().Adam Johnson2021-12-101-1/+1
* Fixed #32996 -- Cached PathInfos on relations.Keryn Knight2021-11-031-6/+34
* Fixed #33131 -- Improved error messages for clashing reverse accessor names.Bernd Wechner2021-10-061-2/+6
* Fixed #33084 -- Removed incorrect system check for ManyToManyField with limit...Hasan Ramezani2021-09-091-11/+0
* Fixed #32983 -- Added system check for redundant related_name on symmetrical ...Nick Touran2021-08-061-0/+10
* Refs #32946 -- Changed internal usage of dynamic Q() objects construction to ...Keryn Knight2021-07-281-4/+4
* Fixed #32951 -- Removed Query.where_class & co.Nick Pope2021-07-221-1/+1
* Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.db....Daniyal2021-07-151-14/+16
* Fixed #32676 -- Prevented migrations from rendering related field attributes ...David Wobrock2021-05-281-8/+34
* Fixed #32294 -- Prevented ManyToManyField's hidden related name collisions be...manav0142020-12-301-1/+5
* Added app labels to related fields checks messages E302-E305.Mariusz Felisiak2020-12-291-5/+9
* Used model's Options.label where applicable.Mariusz Felisiak2020-12-291-13/+3
* Fixed #31742 -- Fixed makemigrations crash on ForeignKey to an app with mixed...Mariusz Felisiak2020-06-261-1/+5
* Fixed #31596 -- Changed ForeignKey.validate() to use the base manager.Jon Dufresne2020-06-251-1/+1
* Removed unnecessary tuple wrapping of single format string argument.François Freitag2020-04-271-1/+1
* Fixed #23916 -- Allowed makemigrations to handle related model name case chan...Adam Johnson2020-03-251-6/+2
* Fixed #31310 -- Fixed hints in checks for using intermediate model with ambig...Matheus Cunha Motta2020-02-281-2/+2
* Fixed #31185 -- Fixed detecting of unique fields in ForeignKey/ForeignObject ...Valze2020-02-271-3/+14
* Fixed #31277 -- Relaxed system check of m2m intermediary tables for db_table ...Xavier Francisco2020-02-171-3/+14
* Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...Hasan Ramezani2020-02-051-0/+1
* Cached ForeignObject.(local/foreign/reverse)_related_fields properties.Adam Johnson2020-01-311-7/+5
* Fixed 31207 -- Prevented references to non-local remote fields in ForeignKey....Hasan Ramezani2020-01-311-0/+15
* Used constant instead of hard-coded value for recursive relationship.Adam Johnson2020-01-161-9/+25
* Refs #28147 -- Fixed setting of OneToOne and Foreign Key fields to None when ...Jon Dufresne2019-07-271-4/+4
* Fixed #30421 -- Allowed symmetrical intermediate table for self-referential M...Nadège Michel2019-06-211-12/+0
* Fixed #28147 -- Fixed loss of assigned parent when saving child after parent.Rob2019-05-211-0/+4
* Fixed #30436 -- Added check that on_delete is callable in ForeignKey and OneT...Rob2019-05-131-0/+2
* Fixed #30368 -- Fixed prefetch_related() for GenericForeignKey when PK is als...Vinny Do2019-04-161-0/+3
* Removed unnecessary string formatting of strings.Jon Dufresne2019-01-141-1/+1
* Moved django.db.migrations.writer.SettingsReference to django.conf.Tim Graham2019-01-111-2/+1
* Fixed #27595 -- Made ForeignKey.get_col() follow target chains.Simon Charette2018-10-221-1/+7
* Fixed imports per isort 4.3.1.Tim Graham2018-02-021-1/+2
* Fixed imports per isort 4.3.0.Mariusz Felisiak2018-02-011-2/+1
* Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов2018-01-121-5/+1
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-31/+30