From 6df19412aabb7d969f5eab4b2ff41269de89b233 Mon Sep 17 00:00:00 2001 From: Clifford Gama <53076065+cliff688@users.noreply.github.com> Date: Thu, 3 Jul 2025 15:23:25 +0200 Subject: [PATCH] Refs #27236 -- Removed references to removed index_together migration methods. --- django/db/migrations/autodetector.py | 4 ++-- 1 file 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()