summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2020-04-30Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote
2020-04-27Removed unnecessary tuple wrapping of single format string argument.François Freitag
2020-04-24Refs #31369 -- Deprecated models.NullBooleanField in favor of BooleanField(nu...Tim Schilling
2020-04-23Fixed #31500 -- Fixed detecting of unique fields in QuerySet.in_bulk() when u...Hannes Ljungberg
2020-04-22Avoided unnecessary recompilation of ordering clause regex in SQLCompiler.Adam Johnson
2020-04-20Fixed #31474 -- Made QuerySet.delete() not return the number of deleted objec...Hasan Ramezani
2020-04-15Fixed #31223 -- Added __class_getitem__() to Manager and QuerySet.sobolevn
2020-04-10Fixed #31351 -- Added system checks for partial indexes and unique constraint...Ichlasul Affan
2020-04-08Fixed #28184 -- Allowed using a callable for FileField and ImageField storage.miigotu
2020-04-07Refs #27666 -- Ensured relationship consistency on delayed reloads.Simon Charette
2020-04-06Fixed #31426 -- Added proper field validation to QuerySet.order_by().Simon Charette
2020-04-06Refs #7098 -- Deprecated passing raw column aliases to order_by().Simon Charette
2020-04-06Fixed #31420 -- Fixed crash when filtering subquery annotation against a Simp...Hasan Ramezani
2020-04-04Fixed #31415 -- Fixed crash when nested OuterRef is used with operators or in...Hasan Ramezani
2020-04-01Refs #12990 -- Moved PostgresSimpleLookup to the django.db.models.lookups.Pos...Mariusz Felisiak
2020-03-31Refs #31403 -- Made SQLInsertCompiler.execute_sql() always return an iterable...Adam Johnson
2020-03-25Fixed #23916 -- Allowed makemigrations to handle related model name case chan...Adam Johnson
2020-03-25Fixed #31396 -- Added binary XOR operator to F expressions.Hannes Ljungberg
2020-03-25Fixed #31377 -- Disabled grouping by aliases on QuerySet.values()/values_list...Hasan Ramezani
2020-03-20Refs #29724 -- Added is_dst parameter to QuerySet.datetimes().Hasan Ramezani
2020-03-19Fixed #31285 -- Fixed inherited Meta.ordering of "-pk".Jon Dufresne
2020-03-18Refs #31055 -- Made long column names checks support databases aware.Mariusz Felisiak
2020-03-18Fixed #31376 -- Optimized nulls ordering when possible on SQLite and MySQL.Simon Charette
2020-03-05Fixed #29129 -- Skipped UPDATE when adding a model instance with inherited pr...Abhijeet Viswa
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2020-03-03Fixed #31150 -- Included subqueries that reference related fields in GROUP BY...Mariusz Felisiak
2020-02-28Fixed #31310 -- Fixed hints in checks for using intermediate model with ambig...Matheus Cunha Motta
2020-02-27Fixed #31251 -- Disabled grouping by OuterRef() annotation.Rohit
2020-02-27Fixed #31185 -- Fixed detecting of unique fields in ForeignKey/ForeignObject ...Valze
2020-02-24Fixed #31286 -- Made database specific fields checks databases aware.Taoup
2020-02-19Refs #31187 -- Added total_unique_constraints property to model's Options.Mariusz Felisiak
2020-02-18Refs #31282 -- Clarified M2O add/remove/set with PK behaviour.Carlton Gibson
2020-02-17Fixed #31277 -- Relaxed system check of m2m intermediary tables for db_table ...Xavier Francisco
2020-02-11Fixed #31246 -- Fixed locking models in QuerySet.select_for_update(of=()) for...Abhijeet Viswa
2020-02-07Fixed #31055 -- Made constraint checks support databases aware.Simon Charette
2020-02-06Fixed #31233 -- Closed database connections and cursors after use.Jon Dufresne
2020-02-05Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect f...Hasan Ramezani
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2020-02-03Fixed #31217 -- Made QuerySet.values()/values_list() group by not selected an...Mariusz Felisiak
2020-01-31Cached ForeignObject.(local/foreign/reverse)_related_fields properties.Adam Johnson
2020-01-31Fixed 31207 -- Prevented references to non-local remote fields in ForeignKey....Hasan Ramezani
2020-01-31Fixed #31219 -- Fixed object deletion crash for nested protected related obje...Matthias Kestenholz
2020-01-29Simplified DeferredAttribute.__get__() a bit.Taoup
2020-01-29Used model's Options.label/label_lower where applicable.Mariusz Felisiak
2020-01-29Refs #27852 -- Fixed object deletion to show all restricted related objects r...Hasan Ramezani
2020-01-29Refs #27852 -- Renamed a loop variable in Collector.collect() to avoid redefi...Mariusz Felisiak
2020-01-27Refs #27852 -- Fixed object deletion to show all protected related objects ra...Hasan Ramezani
2020-01-20Changed re-raising an exception to use bare raise syntax where appropriate.Jon Dufresne
2020-01-16Used constant instead of hard-coded value for recursive relationship.Adam Johnson
2020-01-16Fixed #29998 -- Allowed multiple OneToOneFields to the parent model.Mariusz Felisiak