summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2019-03-22[2.2.x] Fixed #30280 -- Restored Model.get_FIELD_display()'s coercion of lazy...Matthias Kestenholz
2019-03-14[2.2.x] Fixed #30254 -- Allowed model metaclasses to access the attribute dic...Matt Westcott
2019-02-13[2.2.x] Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2019-01-30[2.2.x] Fixed E117 and F405 flake8 warnings.Mariusz Felisiak
2019-01-21[2.2.x] Fixed #30120 -- Fixed invalid SQL in distinct aggregate.Simon Charette
2019-01-16Fixed #30044 -- Raised a FieldError on inherited field update attempts.Simon Charette
2019-01-16Refs #9475 -- Simplified dictionary unpacking.Simon Charette
2019-01-15Refs #9475 -- Fixed typo, used unpacking generalization, and made through_def...Nick Pope
2019-01-15Fixed #9475 -- Allowed RelatedManager.add(), create(), etc. for m2m with a th...Collin Anderson
2019-01-15Fixed #30099 -- Fixed invalid SQL when filtering a Subquery by an aggregate.Nasir Hussain
2019-01-14Removed unnecessary string formatting of strings.Jon Dufresne
2019-01-14Refs #28643 -- Extracted DurationField logic for Avg() and Sum() into mixin.Nick Pope
2019-01-14Refs #28643 -- Changed Variance() to use NumericOutputFieldMixin.Nick Pope
2019-01-14Refs #28643 -- Changed StdDev() to use NumericOutputFieldMixin.Nick Pope
2019-01-14Refs #28643 -- Changed Avg() to use NumericOutputFieldMixin.Nick Pope
2019-01-14Refs #28643 -- Moved db function mixins to a separate module.Nick Pope
2019-01-14Avoided calling as_oracle() for SQLite in Left database function.Nick Pope
2019-01-14Corrected comment in TruncTime database function.Nick Pope
2019-01-14Simplified overriding source expressions in some database functions.Nick Pope
2019-01-14Fixed #30093 -- Fixed ordering of combined queryset ordered by F expressions.Sergey Fedoseev
2019-01-12Refs #28643 -- Added Reverse database function.Nick Pope
2019-01-12Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki
2019-01-12Used None as the empty value for condition in Index's SQL construction.Paveł Tyślacki
2019-01-11Moved django.db.migrations.writer.SettingsReference to django.conf.Tim Graham
2019-01-10Refs #28643 -- Added NullIf database function.Mads Jensen
2019-01-09Fixed #28658 -- Added DISTINCT handling to the Aggregate class.Simon Charette
2019-01-08Simplified some imports for database functions.Nick Pope
2019-01-02Used 4 space hanging indent for dictionaries.Tim Graham
2019-01-01Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki
2018-12-30Renamed QuerySet.earliest()/latest() helper method.Tim Graham
2018-12-27Fixed #29851 -- Fixed crash of annotations with window expressions in Subquery.Mariusz Felisiak
2018-12-22Fixed #29970, #30041 -- Made ModelBase.__new__() pass attrs without contribut...Sergey Fedoseev
2018-12-06Fixed #29932 -- Fixed combining compound queries with sub-compound queries on...Mariusz Felisiak
2018-12-06Fixed #30011 -- Fixed queries that reuse filtered aggregates.Simon Charette
2018-11-30Refs #28643 -- Skipped ATan2() workaround on SpatiaLite 5+.Nick Pope
2018-11-30Fixed #30001 -- Marked UUIDField.description for translation.Prabakaran Kumaresshan
2018-11-23Refs #23801 -- Made integer field max_length warning show correct field type.Nick Pope
2018-11-23Removed redundant BigIntegerField.empty_strings_allowed (already inherited).Nick Pope
2018-11-21Fixed #29974 -- Fixed non-truthy primary key values for QuerySet.bulk_update().Tom Forbes
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-17Refs #29908 -- Optimized known related objects assignment.Simon Charette
2018-11-15Fixed #17930 -- Allowed ORing (|) with sliced QuerySets.Ian Foote
2018-11-14Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.Hasan Ramezani
2018-11-13Fixed #29641 -- Added support for unique constraints in Meta.constraints.Simon Charette
2018-11-13Refs #29641 -- Refactored database schema constraint creation.Simon Charette
2018-11-08Fixed #29908 -- Fixed setting of foreign key after related set access if Fore...Simon Charette
2018-10-29Fixed #29547 -- Added support for partial indexes.Mads Jensen
2018-10-28Fixed #29896 -- Fixed incorrect Model.save() cache relation clearing for fore...Tim Graham
2018-10-24Fixed #29869 -- Made UUIDField.to_python() convert integers.Sanyam Khurana
2018-10-22Fixed #27595 -- Made ForeignKey.get_col() follow target chains.Simon Charette