I would like to use liquibase for db versioning.
I face a kind of problem. I would like to know how to do for commiting changes I make directly on the database to the db.changelog.xml.
I tried the command generateChangeLog but it append the script to create the complete database one after the other. I would like to have only the changes between an old db.changelog.xml and the database.
I saw that people use a reference database, I find that very heavy and not very flexible and scalable for doing a good continuous integration.
Is there any other solution to simply compare the differences bewteen a db.changelog.xml and a database and write them in this db.changelog.xml ?
Thanks.