Does anyone know a good way to allow larger projects, with lots of engineers working in parallel, to handle versioning with Flyway? We often find that during merges to master, we wind up with conflicting merges just because 2-3 independent projects needed db changes, and they used the same version number.
In this scenario, I'm not even sure if a Rails-style timestamp for versioning would work, because you don't necessarily know the order in which the merges will be made to master.
Any good tricks to get around this, aside from having to re-number your migration just before merge?
Tom