3👍
✅
You can’t have gaps in migrations as South assumes these are sequential. I would do:
- Migrate development back to
0006
. - Create a new migration
0007
that does what0012
does and apply it to both development and production. - Create new migration(s) for the original
0007
till0011
changes and apply those to development (and production when ready).
In the future I’d recommend using branches and only merge those branches (including migrations) when you’re ready to have them on development and production.
Source:stackexchange.com