summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2022-06-17[4.1.x] Fixed #28897 -- Fixed QuerySet.update() on querysets ordered by annot...David Wobrock
2022-06-17[4.1.x] Refs #28897 -- Added test for QuerySet.update() on querysets ordered ...David Wobrock
2022-06-13[4.1.x] Fixed #33773 -- Made Index with multiple fields respect DEFAULT_INDEX...Bruce Cutler
2022-06-02[4.1.x] Fixed #31788 -- Fixed migration optimization after altering field to ...David Wobrock
2022-05-26[4.1.x] Fixed #23740 -- Fixed removing unique_together constraint if exists p...David Wobrock
2022-05-26[4.1.x] Refs #23740 -- Added BaseDatabaseSchemaEditor._unique_constraint_name().David Wobrock
2022-05-19[4.1.x] Fixed #33705 -- Fixed crash when using IsNull() lookup in filters.David Wobrock
2022-05-17[4.1.x] Refs #33379 -- Fixed minimum supported version of MariaDB.Mariusz Felisiak
2022-05-17[4.1.x] Updated source translation catalogs.Mariusz Felisiak
2022-05-17Refs #27064 -- Made migrations generate RenameIndex operations when moving in...David Wobrock
2022-05-17Refs #27064 -- Refactored out MigrationAutodetector.create_renamed_fields().David Wobrock
2022-05-16Refs #27064 -- Made migrations generate RenameIndex operations when renaming ...David Wobrock
2022-05-16Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...David Wobrock
2022-05-13Added backward compatibility test for ConnectionHandler.databases property.Nick Pope
2022-05-13Fixed typo in Query.clone()'s docstring.非法操作
2022-05-12Refs #27064 -- Added RenameIndex migration operation.David Wobrock
2022-05-12Made closing in connection handlers more DRY.Nick Pope
2022-05-12Fixed #33543 -- Deprecated passing nulls_first/nulls_last=False to OrderBy an...Mariusz Felisiak
2022-05-12Fixed #29538 -- Fixed crash of ordering by related fields when Meta.ordering ...Ed Rivas
2022-05-10Fixed #30581 -- Added support for Meta.constraints validation.Gagaro
2022-05-04Fixed #25105 -- Checked deferred constraints before updating rows on PostgreSQL.David Wobrock
2022-05-04Refs #30581 -- Added Q.check() hook.Gagaro
2022-05-04Refs #33646 -- Reduced sync_to_async hops on async QuerySet iteration.Simon Charette
2022-05-04Fixed #33675 -- Dropped support for PostgreSQL 10 and PostGIS 2.4.Mariusz Felisiak
2022-05-03Refs #30581 -- Added Q.flatten().Gagaro
2022-05-03Fixed #29854 -- Made _all_related_fields() return deterministically ordered f...Collin Anderson
2022-05-02Refs #33646 -- Made QuerySet.raw() async-compatible.Mariusz Felisiak
2022-05-02Refs #33646 -- Added RawModelIterable.Mariusz Felisiak
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-04-29Refs #33671 -- Fixed migrations crash when adding collation to a primary key ...Mariusz Felisiak
2022-04-29Fixed #33670 -- Fixed altering primary key on SQLite.Mariusz Felisiak
2022-04-29Refs #33413 -- Added collation to CharField/TextField's db_parameters.David Wobrock
2022-04-26Fixed #33646 -- Added async-compatible interface to QuerySet.Andrew Godwin
2022-04-26Fixed #33655 -- Removed unnecessary constant from GROUP BY clause for QuerySe...marcperrinoptel
2022-04-22Removed unnecessary variable in Index.create_sql().Hannes Ljungberg
2022-04-22Refs #31223 -- Added __class_getitem__() to ForeignKey.Collin Anderson
2022-04-21Fixed #33509 -- Added "(no-op)" to sqlmigrate output for operations without S...Adam Johnson
2022-04-21Fixed #33004 -- Made saving objects with unsaved GenericForeignKey raise Valu...sarahboyce
2022-04-19Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak
2022-04-18Fixed DatabaseFeatures.uses_savepoints/can_release_savepoints and related tes...Mariusz Felisiak
2022-04-14Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak
2022-04-14Expanded QuerySet.explain() error message if a backend supports no formats.Tim Graham
2022-04-14Removed unneeded code in explain_query_prefix()Tim Graham
2022-04-13Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner
2022-04-13Fixed DatabaseFeatures.supports_index_column_ordering and related tests with ...Mariusz Felisiak
2022-04-13Removed unnecessary tuple call in SQLInsertCompiler.David Smith
2022-04-12Fixed DatabaseFeatures.supports_expression_indexes on MySQL with MyISAM.Mariusz Felisiak
2022-04-12Fixed #24296 -- Made QuerySet.exists() clear selected columns for not sliced ...mgaligniana
2022-04-12Fixed #33626 -- Cleared cache when unregistering a lookup.Himanshu-Balasamanta
2022-04-11Removed DatabaseFeatures.validates_explain_options.Mariusz Felisiak