Package liquibase.change
package liquibase.change
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
Change
implementations and including them in the classpath.- See Also:
-
ClassDescriptionStandard superclass to simplify
Change
implementations.A common parent for all raw SQL related changes regardless of where the sql was sourced from.Interface all changes (refactorings) implement.Factory class for constructing the correct liquibase.change.Change implementation based on a command name.Static metadata about alink Change
.Static metadata about aChange
parameter.ChangeWithColumns<T extends ColumnConfig>Markers a Change class as containing one or moreColumnConfig
configuration.CheckSums are used by liquibase to determine if a Change has been modified since it was originally ran.The standard configuration used by Change classes to represent a column.The standard configuration used by Change classes to represent a constraints on a column.Annotation used byAbstractChange
to declareChangeMetaData
information.Container object which allows multipleDatabaseChangeProperty
annotations to be used on a single property.Annotation used byAbstractChange
to declareChangeParameterMetaData
information.Adding this interface to your Change class allows you to specify a dbms attribute listing the databases the change is applied to.Deprecated.ReplaceIfExists interface will control whether an implementation change object class will set the replaceIfExists flag that basically will tell generate-changelog/diffToChangelog commands the given change object needs to generate the SQL for replace the stored logic if it already exists