Multi-statement rollback: supported?

Yes, you can have any number of tags inside your rollback block, such as

  1.    
  2.    

or

  1.    ....
  2.    ....
  3.    ....

Nathan

Is there any support for multi-statement rollback? If so, how is invoked?

In other words, if I have a changeset sql subsection with several statements

  1.  
  2.   foo ~~ 
  3.   bar ~~ 

is there a way I can specify a corresponding

  1.  
  2.     undo foo ~~ 
  3.     undo bar ~~ 
  4.  
subsection that also contains several statements?

(I recognize I could create separate change sets for each statement but that is awkward in those rare use cases where I want to do a large bulk set of DDL operations at once, in my case as part of the initial build of the application where the initial schema and objects are created from code generated by an ERD diagramming tool which I am pasting into my liquibase script.)

Thanks!

   GregW