DEV Community

Discussion on: Is it really important to save django's migrations in a version control system ?

Collapse
 
glind profile image
Greg Lind

I have run into this problem in the past and one strategy we have used is reset the migrations after each release. It has helped us keep the migration folder small, and it's bit easier to see the conflicting changes. I do think during development cycles if you isolate your applications and models per developer you eliminate almost entirely the conflicts from migrations if combined with a reset after release.