liquibase.changelog.column.LiquibaseColumn 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.
package liquibase.changelog.column;
import liquibase.servicelocator.LiquibaseService;
import liquibase.structure.core.Column;
/**
* This class is just a marker class that is used to distinguish columns that are
* used in the DATABASECHANGELOG and DATABASECHANGELOGLOCK tables from other columns
* that might be used in Liquibase-managed database schemas.
*/
@LiquibaseService(skip = true)
public final class LiquibaseColumn extends Column {
// no behavioral changes, just extends Column
}