We're a small team of developers working on a version-controlled Django 3 project. We are worried about utilizing migrations and the possibility of overwriting one another's migration files.
Options we've considered:
- Using the
--name/-noption ofmakemigrationsto have a naming convention, but that seems cumbersome - Django documentation mentions tools for version control, but I don't see much on the specifics on it.
How do other teams handle this?