Changes between Initial Version and Version 1 of Ticket #25793
- Timestamp:
- Nov 21, 2015, 8:32:52 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25793 – Description
initial v1 1 1 I had a model that inherited from two other models but added no fields of its own. When I removed the model and generated the migration, it was an invalid migration. It deleted each field individually, and then dropped the table. The problem is that you cannot drop the last field in a table, so the migration will not run. 2 3 A demonstration is at https://github.com/nedbat/django_issue_25793