is it possible for
Liquibase update command to auto-generate changeset Id's e.g. when they're omitted / left blank?
The ID field in [DATABASECHANGELOG] is NVARCHAR(255), which means there's plenty of space for e.g. GUID?
the reason for this: incremental IDs don't work very well in big teams with feature branching strategy. We want to ensure merge to master branch is as simple as possible.
what does everyone else use for IDs to guarantee uniqueness?
The ID field in [DATABASECHANGELOG] is NVARCHAR(255), which means there's plenty of space for e.g. GUID?
the reason for this: incremental IDs don't work very well in big teams with feature branching strategy. We want to ensure merge to master branch is as simple as possible.
what does everyone else use for IDs to guarantee uniqueness?