Changes between Initial Version and Version 1 of Ticket #35813, comment 6


Ignore:
Timestamp:
Oct 8, 2024, 8:35:45 AM (5 weeks ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35813, comment 6

    initial v1  
    11> 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.
    22
    3 I think you're mistaken here, the migration framework has always been tracking changes to unmanaged models for two reasons
     3I think you're mistaken, the migration framework has always been tracking changes to unmanaged models for two reasons
    44
    551. Support managed models referencing un-managed ones
    662. Support data migrations involving un-managed models
    77
    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.
     8The 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.
Back to Top