diff options
| author | Clifford Gama <53076065+cliff688@users.noreply.github.com> | 2025-07-03 15:23:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-03 15:23:25 +0200 |
| commit | 6df19412aabb7d969f5eab4b2ff41269de89b233 (patch) | |
| tree | 4e0fe824e210bf79af3f7e496372c1dca4c4683c | |
| parent | 94ebcf8366d62f6360851b40e9c4dfe3f71d202f (diff) | |
Refs #27236 -- Removed references to removed index_together migration methods.
| -rw-r--r-- | django/db/migrations/autodetector.py | 4 |
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() |
