Changes between Initial Version and Version 1 of Ticket #27236, comment 31
- Timestamp:
- Jul 15, 2022, 10:13:16 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27236, comment 31
initial v1 5 5 Ultimately they'll have to squash their migrations before 5.1 if they want to avoid having their migration breaking so I wonder if we are doing them a favour by silencing the check which than can already silence using `SILENCED_SYSTEM_CHECKS`. 6 6 7 I think the system check hint should point at the proper procedure of using `indexes` and running `makemigrations` instead?7 I think the system check hint should point at the proper procedure of using `indexes` and running `makemigrations` at least? 8 8 9 9 Ultimately the only way for all the warnings and check errors to go away before 5.1 where `AlterIndexTogether` will likely be marked as `elidable = True` since it will be a noop is for users to manually edit their migrations to replace their usage of `AlterIndexTogether` by `AddIndex` and friends. I'm not sure the current documentation does a good job at explaining how this must be done as it's a relatively complex operation.