summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClifford Gama <53076065+cliff688@users.noreply.github.com>2025-07-03 15:23:25 +0200
committerGitHub <noreply@github.com>2025-07-03 15:23:25 +0200
commit6df19412aabb7d969f5eab4b2ff41269de89b233 (patch)
tree4e0fe824e210bf79af3f7e496372c1dca4c4683c
parent94ebcf8366d62f6360851b40e9c4dfe3f71d202f (diff)
Refs #27236 -- Removed references to removed index_together migration methods.
-rw-r--r--django/db/migrations/autodetector.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/migrations/autodetector.py b/django/db/migrations/autodetector.py
index 731612b318..648bac389c 100644
--- a/django/db/migrations/autodetector.py
+++ b/django/db/migrations/autodetector.py
@@ -196,8 +196,8 @@ class MigrationAutodetector:
# Create the renamed fields and store them in self.renamed_fields.
# They are used by create_altered_indexes(), generate_altered_fields(),
- # generate_removed_altered_index/unique_together(), and
- # generate_altered_index/unique_together().
+ # generate_removed_altered_unique_together(), and
+ # generate_altered_unique_together().
self.create_renamed_fields()
# Create the altered indexes and store them in self.altered_indexes.
# This avoids the same computation in generate_removed_indexes()