All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.change.custom.package-info Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
/**
 * Although Liquibase tries to provide a wide range of database refactorings, there are times you may want to create
 * your own custom refactoring class.

*

* To create your own custom refactoring, simply create a class that implements the * {@link liquibase.change.custom.CustomSqlChange} or {@link liquibase.change.custom.CustomTaskChange} interface and * use the <custom> tag in your changeset.

*

* If your change can be rolled back, implement the {@link liquibase.change.custom.CustomSqlRollback} interface as * well.

*

* For a sample custom change class, see liquibase.change.custom.ExampleCustomSqlChange in the test sources. */ package liquibase.change.custom;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy