summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2020-07-30[3.1.x] Refs #31829 -- Added DatabaseFeatures.json_key_contains_list_matching...Tim Graham
2020-07-28[3.1.x] Fixed #31836 -- Dropped support for JSONField __contains and __contai...Mariusz Felisiak
2020-06-30[3.1.x] Fixed #31751 -- Fixed database introspection with cx_Oracle 8.Mariusz Felisiak
2020-06-24[3.1.x] Fixed #31735 -- Fixed migrations crash on namespaced inline FK additi...Simon Charette
2020-05-18[3.1.x] Refs #12990 -- Added DatabaseFeatures.has_json_operators.Tim Graham
2020-05-14[3.1.x] Fixed #31584 -- Fixed crash when chaining values()/values_list() afte...Mariusz Felisiak
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2020-05-08Fixed #12990, Refs #27694 -- Added JSONField model field.sage
2020-05-08Refs #12990 -- Bumped mysqlclient requirement to >= 1.4.0.Mariusz Felisiak
2020-05-06Fixed a/an typos in "SQL" usage.Adam Johnson
2020-04-30Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote
2020-04-24Refs #30913 -- Added BaseDatabaseSchemaEditor._index_condition_sql().Hannes Ljungberg
2020-04-23Fixed #29224 -- Fixed removing index_together indexes if exists unique_togeth...David Wobrock
2020-04-21Fixed #31479 -- Added support to reset sequences on SQLite.Jon Dufresne
2020-04-21Refs #30591 -- Adjusted table rebuild for non-pk relationship on SQLite.Simon Charette
2020-04-21Fixed #31064 -- Recreated auto-created many-to-many tables on primary key dat...Simon Charette
2020-04-20Stopped rebuilding referenced tables multiple times on SQLite alterations.Simon Charette
2020-04-20Capitalized Unicode in docs, strings, and comments.Jon Dufresne
2020-04-20Fixed #31477 -- Removed "using" argument from DatabaseOperations.execute_sql_...Jon Dufresne
2020-04-17Fixed #31473 -- Made sql_flush() use RESTART IDENTITY to reset sequences on P...Jon Dufresne
2020-04-17Simplified DatabaseOperations.sql_flush() on Oracle and PostgreSQL.Jon Dufresne
2020-04-17Refs #26552 -- Made reloading the database for tests check only loaded tables...Mariusz Felisiak
2020-04-14Fixed #29501 -- Allowed dbshell to pass options to underlying tool.Adam Johnson
2020-04-09Refs #31411 -- Used RENAME COLUMN on MySQL 8.0.4+.Mariusz Felisiak
2020-04-06Fixed #31030 -- Registered SQLite functions as deterministic on Python 3.8+.Sergey Fedoseev
2020-04-02Fixed #31275 -- Optimized sql_flush() without resetting sequences on MySQL.c-bata
2020-04-02Refs #31051 -- Optimized serialize_db_to_string() by avoiding creation of mod...Matthijs Kooijman
2020-04-02Refs #31051 -- Fixed reloading the database with circular related objects and...Matthijs Kooijman
2020-04-02Fixed #31411 -- Used RENAME COLUMN on MariaDB 10.5.2+.Hasan Ramezani
2020-03-31Fixed #31403 -- Added support for returning fields from INSERT statements on ...Adam Johnson
2020-03-31Refs #31403 -- Made SQLInsertCompiler.execute_sql() always return an iterable...Adam Johnson
2020-03-25Fixed #31399 -- Made SchemaEditor._alter_field() ignore foreign key constrain...Tim Graham
2020-03-25Fixed #31396 -- Added binary XOR operator to F expressions.Hannes Ljungberg
2020-03-24Fixed #31392 -- Avoided unnecessary SchemaEditor.effective_default() calls wh...Shipeng Feng
2020-03-20Fixed #31144 -- Relaxed system check for max_length of CharFields on MySQL/Ma...Rohit
2020-03-19Refs #29548 -- Mentioned MariaDB in database system checks.Mariusz Felisiak
2020-03-18Fixed #31376 -- Optimized nulls ordering when possible on SQLite and MySQL.Simon Charette
2020-03-11Fixed #31359 -- Deprecated get_random_string() calls without an explicit length.Claude Paroz
2020-03-06Fixed #31345 -- Added BaseDatabaseIntrospection.get_relations().shankarj67
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2020-03-04Fixed #31333 -- Added BaseDatabaseIntrospection.get_table_description().aryan
2020-03-03Refs #31331 -- Added DatabaseWrapper.sql_mode to MySQL.Mariusz Felisiak
2020-02-28Fixed #31301 -- Fixed crash of QuerySet.bulk_create() with mixed empty and se...Hans Aarne Liblik
2020-02-27Fixed #31312 -- Properly ordered temporal subtraction params on MySQL.Simon Charette
2020-02-18Fixed #31271 -- Preserved ordering when unifying query parameters on Oracle.Mariusz Felisiak
2020-02-18Fixed #31228 -- Reallowed aggregates to be used with multiple expressions and...Taoup
2020-02-14Fixed #26552 -- Deferred constraint checks when reloading the database with d...Matthijs Kooijman
2020-02-06Fixed #31233 -- Closed database connections and cursors after use.Jon Dufresne
2020-02-06Refs #31233 -- Changed DatabaseWrapper._nodb_connection to _nodb_cursor().Jon Dufresne
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope