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? |
| 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? Since the problem is that we need the first migration to be associated with the second one. |