We have a existing database in production. We have decided to use liquibase for all further updates and create any new database (like development or integration).
We ha
The process to put a existing database under liquibase control is the following:
changelogSync
. This will create the Liquibase tables and mark all change sets as being applied (this is what you missed)update
to apply the change sets.