summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2019-09-10Fixed #30754 -- Prevented inclusion of aliases in partial index conditions.Simon Charette
2019-09-09Fixed #28107 -- Added DatabaseFeatures.allows_group_by_selected_pks_on_model(...Vojtech Bocek
2019-09-09Refs #29444 -- Allowed returning multiple fields from INSERT statements on Po...Johannes Hoppe
2019-09-09Refs #29444 -- Fixed DateField constructor in db.backends.oracle.utils.Insert...Johannes Hoppe
2019-09-09Fixed #30757 -- Added a system check to ensure max_length fits the longest ch...Nick Pope
2019-09-06Fixed DatabaseFeatures.can_introspect_check_constraints on MariaDB < 10.2.22,...Mariusz Felisiak
2019-09-05Fixed #30750 -- Added support for check constraints on MySQL 8.0.16+.Mariusz Felisiak
2019-09-04Fixed #27910 -- Added enumeration helpers for use in Field.choices.Shai Berger
2019-09-03Fixed #30691 -- Made migrations autodetector find dependencies for foreign ke...Viktor Lomakin
2019-09-03Refs #29444 -- Made db.backends.oracle.utils.InsertVar use str as default.Johannes Hoppe
2019-09-02Fixed #30739 -- Fixed exclusion of multi-valued lookup against outer rhs.Simon Charette
2019-09-02Refs #28442 -- Adjusted related lookups handling of expression rhs.Simon Charette
2019-08-29Refs #25367 -- Simplified OrderBy and Lookup by using Case() instead of RawSQ...Mariusz Felisiak
2019-08-29Fixed #25367 -- Allowed boolean expressions in QuerySet.filter() and exclude().Matthew Schinckel
2019-08-27Fixed #30727 -- Made Subquery pickle without evaluating their QuerySet.Andrew Brown
2019-08-26Refs #30591 -- Fixed introspection of check and unique column constraints on ...Mariusz Felisiak
2019-08-23Replaced subprocess commands by run() wherever possible.Claude Paroz
2019-08-22Fixed #30712 -- Allowed BLOB/TEXT defaults on MySQL 8.0.13+.Nasir Hussain
2019-08-21Fixed #21039 -- Added AddIndexConcurrently/RemoveIndexConcurrently operations...Mads Jensen
2019-08-20Fixed #29979, Refs #17337 -- Extracted AutoField field logic into a mixin and...Nick Pope
2019-08-19Fixed #29260 -- Skipped an UPDATE when adding a model instance with primary k...Hasan Ramezani
2019-08-18Refs #28428 -- Made FileField.upload_to support pathlib.Path.Claude Paroz
2019-08-17Fixed #29545 -- Fixed using filter lookups againts nested subquery expressions.Simon Charette
2019-08-16Fixed #27676 -- Allowed BLOB/TEXT defaults on MariaDB 10.2.1+.Adam Johnson
2019-08-16Fixed #30687 -- Fixed using of OuterRef() expressions in distance lookups.Andrew Brown
2019-08-15Fixed #30449 -- Fixed RelatedFieldListFilter/RelatedOnlyFieldListFilter to re...zeyneloz
2019-08-14Optimized Field.deconstruct() by using elif.Mads Jensen
2019-08-13Refs #25367 -- Moved Oracle Exists() handling to contextual methods.Simon Charette
2019-08-13Refs #25367 -- Moved select_format hook to BaseExpression.Simon Charette
2019-08-12Refs #24793 -- Removed bogus connection argument from SQLCompiler.compile() c...Simon Charette
2019-08-12Refs #11964 -- Made constraint support check respect required_db_features.Simon Charette
2019-08-12Refs #23879 -- Made introspection respect required_db_features.Simon Charette
2019-08-05Fixed #28393 -- Added helpful error messages for invalid AutoField/FloatField...Diederik van der Boor
2019-08-02Simplified AlterModelTable by making it subclass ModelOptionOperation.Nick Pope
2019-08-02Fixed #30668 -- Made QuerySet.filter() raise NotSupportedError if any of sour...aaktsipetrov
2019-08-02Fixed #30661 -- Added models.SmallAutoField.Nick Pope
2019-08-02Removed obsolete mentions of a check constraint in BaseDatabaseSchemaEditor.a...Mariusz Felisiak
2019-08-01Refs #30664 -- Fixed migrations crash when altering AutoField/BigAutoField wi...Mariusz Felisiak
2019-08-01Fixed #30664 -- Fixed migrations crash when altering table on SQLite or alter...Ngalim Siregar
2019-07-31Fixed #30665 -- Added support for distinct argument to Avg() and Sum().Étienne Beaulé
2019-07-30Refs #30593 -- Fixed introspection of check constraints columns on MariaDB.Hasan Ramezani
2019-07-30Refs #30593 -- Added _parse_constraint_columns() hook to introspection on Mar...Hasan Ramezani
2019-07-27Refs #28147 -- Fixed setting of OneToOne and Foreign Key fields to None when ...Jon Dufresne
2019-07-25Added Query.is_sliced property.Mariusz Felisiak
2019-07-25Fixed #27995 -- Added error messages on unsupported operations following unio...Hasan Ramezani
2019-07-25Fixed #30657 -- Allowed customizing Field's descriptors with a descriptor_cla...Jon Dufresne
2019-07-25Refs #30657 -- Made DeferredAttribute.__init__() to take a field instance ins...Jon Dufresne
2019-07-23Improved error message when index in __getitem__() is invalid.Jon Dufresne
2019-07-23Refs #29548 -- Fixed DatabaseWrapper.display_name on MariaDB.Mariusz Felisiak
2019-07-23Removed unnecessary code in Model.__init__().Jon Dufresne