Changes between Initial Version and Version 1 of Ticket #25793


Ignore:
Timestamp:
Nov 21, 2015, 8:32:52 AM (8 years ago)
Author:
Ned Batchelder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25793 – Description

    initial v1  
    11I 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
     3A demonstration is at https://github.com/nedbat/django_issue_25793
Back to Top