Changes between Initial Version and Version 1 of Ticket #35813
- Timestamp:
- Oct 4, 2024, 8:33:02 AM (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35813 – Description
initial v1 71 71 72 72 Per the django docs: " You should think of migrations as a version control system for your database schema. `makemigrations` is responsible for packaging up your model changes into individual migration files - analogous to commits"; it's not behaving that way currently, so I believe this to be a valid bug worth fixing if the docs 73 74 Per the django forums: "This lack of proper tracking might explain surface bugs like: [https://code.djangoproject.com/ticket/27319]" 75 76 Additional Suggestions: I think an option to exclude specific models or just exclude all unmanaged models would be something worth adding in the event we did not want to track historical changes to an unmanaged model or have it recorded in migrations.