I have been running Liquibase directly in Java similar to the following:
Liquibase liquibase = new Liquibase(changeLogPath, ResourceAccessor, Connection);
liquibase.update(new Contexts());
Is there a way to set strict=true when doing this? Are we able to set any options which we could do at the command line?
Thanks