Hello!
I want to ask something. I checked some of the existing topics but did not find something respective, so please excuse if someone has already asked the same.
Does Liquibase support changes in the db schema, depending on a version?
For example:
I have a software that has a new release every week. This program also is used by customers who are in various releases but the version in db tables is different.
Program in 1.1 has db version 1,
Program in 1.2 has db version 2,
Program in 1.3 has db version 3,
etc
I want to add a column to a table, for the version 1.4, but only affect the 1.3 release and not the previous ones. So when the customer is upgraded from 1.3 to 1.4, the upgrade in the db will run automatically. If the customer is in 1.2 when upgrading to 1.4, the db upgrade should not run.
Can you give me an example, or a link to see?