mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
While AlterUniqueTogether has been documented to be still allowed in historical migrations for the foreseeable future it has been crashing since2abf417c81was merged because the latter removed support for Meta.index_together which the migration framework uses to render models to perform schema changes. CreateModel(options["unique_together"]) was also affected. Refs #27236. Co-authored-by: Simon Charette <charette.s@gmail.com> Backport ofb44efdfe54from main.