[Fixed]-Should south migration files be added to source control?

21👍

They should definitely be added to source control. You will need to manually (verbally?) co-ordinate changes your models to avoid clashes. If you don’t include the migrations in your source control, then other developers won’t be able to migrate their database (which defeats the point of actually having migrations).

Leave a comment