0
votes

When I was developing with South I was able to use the --update flag for the schemamigration management command to refine the latest migration.

This was very convenient for iterative development. Is there an equivalent of the --update flag for Django>=1.7 native migrations?

1

1 Answers

1
votes

According to the doumentation:

You are encouraged to make migrations freely and not worry about how many you have; the migration code is optimized to deal with hundreds at a time without much slowdown.

If you really want to get rid of your migrations as you develop I think your best bet is to squash them.