Hello
I have some doubts about liquibase core classes:
- Why does liquibase.changelog.Changeset#getChanges return an unmodifiableList since I'd like to manipulate (directly delete or edit+update a change)?
- Why doesn't liquibase.change.Change implementation has not an identifier, since I am using this classes directly binded in JSF pages?
- When using N changes within a changeset, could I use <preConditions> tag? Is there any alternative or do I need to implement 1-1 change-changeset?
- Is it possible to preview SQL generation by passing Change implementation and Database object somewhere?