liquibase.change.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
/**
* The change package contains the available database "changes". "Change" was chosen as a term over "refactoring"
* because refactoring should technically result in the same functionality whereas the database changes do affect
* functionality.
*
* Liquibase ships with a set of changes that range from low-level create table style changes to higher level
* "introduce lookup table" style changes, but additional custom changes can be added via by creating new
* {@link liquibase.change.Change} implementations and including them in the classpath.
*
* @see http://liquibase.org/extensions
*/
package liquibase.change;