Using liquibase for managing actions

Hi,


I wonder if it is possible to manage using extensions running of actions that are not sql statements but running other commands such as activating APIs or creating files using liquibase.


Thanks,

Netanel

Yes. There are a lot of times it is nice to manage things with Liquibase outside of just SQL calls. http://www.liquibase.org/documentation/changes/execute_command.html allows you to call command line functions, or the http://www.liquibase.org/documentation/changes/custom_change.html custom change tags let you write java classes that with whatever logic you want.


Nathan