I have a microservice built using spring boot. I integrated the Liquibase and it execute all changeSets except rollbacks. Below is the sample liquibase xml file.
<changeSet id="6" author="Kasun">
<insert tableName="user">
<column name="firstNale" value="Kasun" ></column>
<column name="lastName" value="Ranasinghe" ></column>
</insert>
</changeSet>
<changeSet id="7" author="Kasun">
<rollback changeSetAuthor="Kasun" >
<createTable tableName="user" />
</rollback>
</changeSet>
When I run the spring boot app it doesn’t execute the rollback. But in the database changes is updated as executed.