It's vague for me which strategy is better in Version controlling of django or any other web framework:
- Commit separately for creating model and running
makemigrations. - Commit both tasks together.
I think myself first strategy is better, because of migration files which creating after running makemigrations. But I need to be sure which one in better. Is there any certain standard for this?