summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2023-12-03[5.0.x] Fixed #35002 -- Made UniqueConstraints with fields respect nulls_dist...Peter Thomassen
2023-11-30[5.0.x] Fixed #35006 -- Fixed migrations crash when altering Meta.db_table_co...Mariusz Felisiak
2023-11-27[5.0.x] Fixed #34992 -- Fixed DatabaseFeatures.allows_group_by_selected_pks o...Nathaniel Conroy
2023-11-22[5.0.x] Fixed #34984 -- Skipped GeneratedFields when remaking tables on SQLite.Sarah Boyce
2023-11-07[5.0.x] Fixed #34946 -- Preserved db_default on combined default field addition.Simon Charette
2023-11-03[5.0.x] Fixed #34941 -- Fixed fetching decimal db_defaults for DecimalFields ...Mariusz Felisiak
2023-11-03[5.0.x] Refs #34941 -- Skipped OperationTests.test_alter_field_change_nullabl...Mariusz Felisiak
2023-11-02[5.0.x] Fixed #34936 -- Fixed migration crash for DecimalField with db_defaul...David Sanders
2023-11-02[5.0.x] Refs #31300 -- Allowed testing GeneratedField without collation.Tim Graham
2023-10-30[5.0.x] Fixed #34932 -- Restored varchar_pattern_ops/text_pattern_ops index c...Tom Carrick
2023-09-25[5.0.x] Fixed #34849 -- Avoided raising RuntimeWarning about import-time quer...David Sanders
2023-09-22[5.0.x] Fixed #34840 -- Avoided casting string base fields on PostgreSQL.Mariusz Felisiak
2023-09-09Fixed #34820 -- Fixed migrations crash when changing a ForeignObject field.donghao
2023-09-07Fixed #31300 -- Added GeneratedField model field.Jeremy Nauta
2023-08-31Fixed #34547 -- Deprecated DatabaseOperations.field_cast_sql().David Smith
2023-08-30Fixed #34799 -- Made MySQL introspection skip cross-database relations.John Whitman
2023-08-21Fixed #33143 -- Raised RuntimeWarning when performing import-time queries.Florian Zimmermann
2023-08-20Fixed DatabaseCreation.get_test_db_clone_settings() for empty database name o...Mariusz Felisiak
2023-08-10Fixed #33817 -- Added support for python-oracledb and deprecated cx_Oracle.Jingbei Li
2023-08-10Fixed DatabaseFeatures.supports_primitives_in_json_field on Oracle 21c+.Mariusz Felisiak
2023-08-09Refs #34233 -- Bumped required cx_Oracle to 8.3.Mariusz Felisiak
2023-08-04Fixed #34760 -- Dropped support for SQLite < 3.27.Mariusz Felisiak
2023-08-03Refs #33713 -- Removed unnecessary version check in DatabaseFeatures.update_c...Mariusz Felisiak
2023-08-03Fixed #34761 -- Dropped support for MySQL < 8.0.11.Mariusz Felisiak
2023-08-02Fixed #33507 -- Used UUID data type on MariaDB 10.7+.Albert Defler
2023-07-22Refs #24686 -- Made AlterField operation a noop when renaming related model w...devilsautumn
2023-07-19Fixed #34701 -- Added support for NULLS [NOT] DISTINCT on PostgreSQL 15+.Simon Charette
2023-07-19Reduced unique constraint eligibility code duplication.Simon Charette
2023-06-27Fixed #34671 -- Fixed collation introspection for views and materialized view...Mariusz Felisiak
2023-06-23Improved style of n-tuple wording in docs and comments.Nick Pope
2023-05-12Fixed #470 -- Added support for database defaults on fields.Ian Foote
2023-05-10Fixed #34553 -- Fixed improper % escaping of literal in constraints.Simon Charette
2023-05-09Moved SQLite DatabaseSchemaEditor.add_field()'s comment to the correct line.Mariusz Felisiak
2023-05-08Fixed #34544 -- Avoided DBMS_LOB.SUBSTR() wrapping with IS NULL condition on ...Mariusz Felisiak
2023-05-05Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak
2023-05-03Fixed #34523 -- Fixed TransactionManagementError in QuerySet.update_or_create...Mariusz Felisiak
2023-05-01Fixed #33759 -- Avoided unnecessary subquery in QuerySet.delete() with self-r...4the4ryushin
2023-04-21Fixed #34505 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Petter Friberg
2023-04-18Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation ...David Wobrock
2023-04-14Fixed #34486 -- Fixed DatabaseOperations.compose_sql() crash with no existing...Scott Macpherson
2023-04-07Fixed #34470 -- Enforced UTF-8 encoding on PostgreSQL.Mariusz Felisiak
2023-04-07Fixed #34466 -- Reallowed setting cursor_factory in DATABASES["options"] on P...Anders Kaseorg
2023-04-03Prevented PostgreSQL's DatabaseCreation._execute_create_test_db() from hiding...Tim Graham
2023-03-18Fixed #34421 -- Fixed QuerySet.update() on querysets in descending order by a...hb6h057
2023-03-08Fixed #34370 -- Added integer fields validation as 64-bit on SQLite.nabil-rady
2023-03-02Refs #34320 -- Stopped recreating check constraints when renaming fields.Mariusz Felisiak
2023-02-23Refs #30060, Refs #34217 -- Made SchemaEditor not generate SQL for CheckConst...Mariusz Felisiak
2023-02-21Refs #31445 -- Added test for nesting QuerySet.union().Mariusz Felisiak
2023-02-15Fixed #34320 -- Make sure constraints names are obtained from truncated colum...nabil-rady
2023-02-06Made PostgreSQL's SchemaEditor._create_index_sql() respect the "sql" argument.Dan Glass