summaryrefslogtreecommitdiff
path: root/django/db/backends/base
AgeCommit message (Expand)Author
2019-09-11[3.0.x] Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL ...Adnan Umer
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-08-29Fixed #25367 -- Allowed boolean expressions in QuerySet.filter() and exclude().Matthew Schinckel
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-13Refs #25367 -- Moved Oracle Exists() handling to contextual methods.Simon Charette
2019-08-12Refs #23879 -- Made introspection respect required_db_features.Simon Charette
2019-08-02Fixed #30661 -- Added models.SmallAutoField.Nick Pope
2019-08-02Removed obsolete mentions of a check constraint in BaseDatabaseSchemaEditor.a...Mariusz Felisiak
2019-07-19Fixed #30593 -- Added support for check constraints on MariaDB 10.2+.Hasan Ramezani
2019-07-08Refs #29444 -- Added support for fetching a returned non-integer insert value...Johannes Hoppe
2019-07-02Fixed typos in comments and docs.Min ho Kim
2019-06-20Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin
2019-05-08Used time.monotonic() instead of time.time() where applicable.Przemysław Suliga
2019-05-07Fixed #30444 -- Moved SQL generation for tables to BaseDatabaseSchemaEditor.t...Rob Golding-Day
2019-04-18Fixed typos in docs, comments, and exception messages.Ville Skyttä
2019-03-17Refs #30172 -- Prevented removing a model Meta's index/unique_together from r...Paveł Tyślacki
2019-03-17Refs #30172 -- Prevented removing a field's check or unique constraint from r...Paveł Tyślacki
2019-03-09Fixed #30242 -- Removed extra space before LIMIT/OFFSET SQL.Hang Park
2019-02-14Fixed #30171 -- Fixed DatabaseError in servers tests.Jon Dufresne
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2019-02-09Refs #26608 -- Added a database feature for fixed frame range distance support.Simon Charette
2019-02-06Refs #27753 -- Favored force/smart_str() over force/smart_text().Aymeric Augustin
2019-01-30Refs #29444 -- Renamed DatabaseFeatures.can_return_id* to be generic for othe...Johannes Hoppe
2019-01-30Fixed #30116 -- Dropped support for Python 3.5.Tim Graham
2019-01-29Fixed #30108 -- Allowed adding foreign key constraints in the same statement ...Dan Tao
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-10Renamed variables after generalization of constraints.Paveł Tyślacki
2019-01-09Refs #23748 -- Added AutoField introspection for SQLite.Nick Pope
2019-01-03Fixed typo in django/db/backends/base/features.py.Mariusz Felisiak
2019-01-01Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki
2018-12-26Refs #29547 -- Skipped an unsupported partial index test on older versions of...Tim Graham
2018-12-24Fixed #30056 -- Added SQLite support for StdDev and Variance functions.Nick Pope
2018-12-22Renamed SQLite3 references to to SQLite.Simon Charette
2018-12-06Fixed #29932 -- Fixed combining compound queries with sub-compound queries on...Mariusz Felisiak
2018-11-26Refs #29722 -- Added introspection of materialized views for Oracle.Mariusz Felisiak
2018-11-21Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak
2018-11-20Changed BaseDatabaseSchemaEditor._effective_default() to staticmethod.Tim Graham
2018-11-17Added BaseDatabaseSchemaEditor._effective_default() to allow testing without ...Tim Graham
2018-11-17Fixed #29505 -- Removed SchemaEditor's calling of callable defaults.Tim Graham
2018-11-13Refs #29641 -- Refactored database schema constraint creation.Simon Charette
2018-11-09Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham
2018-10-29Fixed #29547 -- Added support for partial indexes.Mads Jensen
2018-10-25Refs #27025 -- Removed obsolete sqlite3 transaction management workaround for...Tim Graham
2018-10-25Made DatabaseFeatures.uses_savepoints default to True.Tim Graham
2018-10-21Fixed #29870 -- Added DurationField introspection for Oracle and PostgreSQL.Mariusz Felisiak
2018-10-02Added django.db.backends.utils.names_digest() to remove redundant code.Jon Dufresne