summaryrefslogtreecommitdiff
path: root/django/db/backends/base
AgeCommit message (Expand)Author
2020-01-20Fixed #31183 -- Added a feature flag for "<db> only supports UNBOUNDED togeth...Tim Graham
2020-01-03Fixed #31133 -- Fixed crash when subtracting against a subquery annotation.Simon Charette
2019-12-04Fixed #23524 -- Allowed DATABASES['TIME_ZONE'] option on PostgreSQL.Aymeric Augustin
2019-12-04Refs #23524 -- Unified BaseDatabaseWrapper.timezone.Aymeric Augustin
2019-11-20Fixed #25388 -- Added an option to allow disabling of migrations during test ...Jon Dufresne
2019-11-19Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede
2019-11-18Replaced unnecessary str()/bytes() calls with literals.Jon Dufresne
2019-11-04Refs #13312 -- Simplified handling of nulls ordering on MySQL.Nick Pope
2019-09-24Refs #29444 -- Removed redundant DatabaseFeatures.can_return_multiple_columns...Mariusz Felisiak
2019-09-24Fixed #29444 -- Allowed returning multiple fields from INSERT statements on O...Johannes Hoppe
2019-09-11Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL when alt...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