Changes between Version 9 and Version 10 of Ticket #31416, comment 16


Ignore:
Timestamp:
Apr 18, 2020, 7:20:02 AM (4 years ago)
Author:
Nan Liu

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31416, comment 16

    v9 v10  
    1515}}}
    1616
    17 In this case, it should've been `["RemoveField", "RemoveField", "CreateModel", "CreateModel"]`, but currently it is `["CreateModel", "CreateModel", "RemoveField", "RemoveField"]`. How can I create one migration for `Readable` first and then create the second one for the updated models?
     17In this case, it should've been `["RemoveField", "RemoveField", "CreateModel", "CreateModel"]`, but currently it is `["CreateModel", "CreateModel", "RemoveField", "RemoveField"]`. How can I create one migration for `Readable` first and then create the second one for the updated models? Since the problem is that we need the first migration to be associated with the second one.
Back to Top