Package liquibase.change
Interface ChangeWithColumns<T extends ColumnConfig>
-
- All Known Implementing Classes:
AddColumnChange,CreateIndexChange,CreateTableChange,DropColumnChange,InsertDataChange,LoadDataChange,LoadUpdateDataChange,UpdateDataChange
public interface ChangeWithColumns<T extends ColumnConfig>Markers a Change class as containing one or moreColumnConfigconfiguration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddColumn(T column)Add a column configuration to the Change.List<T>getColumns()Return all theColumnConfigobjects defined for thisChangevoidsetColumns(List<T> columns)
-