I want to implement Liquibase in my java application. I could use the update command by using:
Liquibase liquibase = new Liquibase(changelogFile, new ClassLoaderResourceAccessor(), database);
liquibase.update(new Contexts(), new LabelExpression());
Is there any way to do the same with updateSQL command? (I cann’t find updateSQL method in Liquibase class)
Thank you