Changes between Initial Version and Version 2 of Ticket #28916


Ignore:
Timestamp:
Dec 12, 2017, 9:54:06 AM (7 years ago)
Author:
fredley
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28916

    • Property Component UncategorizedMigrations
  • Ticket #28916 – Description

    initial v2  
    2424}}}
    2525
    26 This can result in an automatically created migration (using `manage.py migrate`) that looks like this:
     26This can result in an automatically created migration (using `manage.py makemigrations`) that looks like this:
    2727
    2828{{{
     
    4444}}}
    4545
    46 This migration fails, because `AlterUniqueTogether` needs to come before `RemoveField`, as it references `fka`.
     46This migration fails, because `AlterUniqueTogether` needs to come before `RemoveField`, as it references `fka`. This is hard to debug, and can only be fixed by manually reordering the migration operations.
Back to Top