I renamed the name of a model field. I have about 10 million rows in the Postgres table for this model. This field is part of a unique_together constraint, so my migration includes a AlterUniqueTogether.
I'm wondering -- what are the performance implications of this? Will it delete the existing PG index and create a new one, or simply rename the existing index?