liquibase.statement.core.SetColumnRemarksStatement 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.statement.core;
import liquibase.statement.AbstractSqlStatement;
public class SetColumnRemarksStatement extends AbstractSqlStatement {
private String catalogName;
private String schemaName;
private String tableName;
private String columnName;
private String remarks;
private String columnDataType;
public SetColumnRemarksStatement(String catalogName, String schemaName, String tableName, String columnName, String remarks) {
this(catalogName, schemaName, tableName, columnName, remarks, null);
}
public SetColumnRemarksStatement(String catalogName,
String schemaName,
String tableName,
String columnName,
String remarks,
String columnDataType) {
this.catalogName = catalogName;
this.schemaName = schemaName;
this.tableName = tableName;
this.columnName = columnName;
this.remarks = remarks;
this.columnDataType = columnDataType;
}
public String getColumnDataType() {
return columnDataType;
}
public String getCatalogName() {
return catalogName;
}
public String getSchemaName() {
return schemaName;
}
public String getTableName() {
return tableName;
}
public String getColumnName() {
return columnName;
}
public String getRemarks() {
return remarks;
}
}