Hi Community,
Hope you are all having good day.
My requirement is that on liquibase status command, I get response like below:
src/main/resources/Changelog.xml::1.0.0_1::authorName
In my changelog, i have included more than 1 SQl file like below:
<changeSet author="dev1" id="1.0.0_1">
<sqlFile path="../mssql/sql//test1.sql" relativeToChangelogFile="true" encoding="UTF-8"/>
<rollback>
<sqlFile path="../mssql/rollbacksql/test1.sql" relativeToChangelogFile="true" encoding="UTF-8"/>
</rollback>
</changeSet>
My requirement is that, instead of displaying changelogfile:changesetID:authorname, I want to list out the SQL files to be deployed.
May I know if there is a way to print the SQLFile names, pls?
Thanks,
Adi.