Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public void init() throws SetupException

Called by LiquiBase Liquibase after all properties are set. AbstractChange implements this as a no-op.

...

  1. Create the class in the package "liquibase.change.ext".  LiquiBase Liquibase automatically registers Change implementations it finds in that package
  2. Call liquibase.change.ChangeFactory.getInstance().register(YourChange.class)

...