I'm writing a CustomSqlChange for the first time and want to test the outcome by running it on my current database. Of course I could start up the application and execute all change sets via liquibase (including the one that executes my CustomSqlChange
), but that takes a lot of time.
Is there a way to manually execute the java class implementing CustomSqlChange
from my IDE (IntelliJ) as if it would be from liquibase? Could one maybe even debug that execution?