Changes between Initial Version and Version 1 of Ticket #35813, comment 6
- Timestamp:
- Oct 8, 2024, 8:35:45 AM (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35813, comment 6
initial v1 1 1 > The purpose of Django's makemigrations command is to identify changes in managed models, or models in which Django has authority over the database table structure. 2 2 3 I think you're mistaken here, the migration framework has always been tracking changes to unmanaged models for two reasons3 I think you're mistaken, the migration framework has always been tracking changes to unmanaged models for two reasons 4 4 5 5 1. Support managed models referencing un-managed ones 6 6 2. Support data migrations involving un-managed models 7 7 8 The report here relates to 2. which I think it reasonable to assume that if the framework tracks additions and removal it should also alterations.8 The report here relates to 2. which I think it reasonable to assume that if the framework tracks additions and removal it should also do the same with alterations.