Using 1.9…
I have a rather intense changeSet that modifies tables and manipulates data. If anything happens during that changeSet and I want to rollback, how can I be assured of the correct starting point for the rollback?
My idea was to use a customChange inside the rollback tag and handle it all inside java code, but then my question becomes - when are the rollback statements generated? Are they only generated when a rollback occurs - or are they generated when the changeSet is executed? If a changeSet in the future fails and I want to rollback multiple steps, will these rollback statements still be available for use?