My local deployment application supports 2 database types (Oracle and MS Sql Server). I have a working system with a set of build scripts that can be run against an empty schema to create a new build. I now want to support versioning; so when I update the schema it's recorded and a user can run any updates since their last update to the DB to catch up with the code.
Is Liquibase capable of managing two databases and outputting update scripts based on version numbers?
I'm not too familiar with Liquibase and most demos and tutorials just show basic versioning with a single database.