liquibase.statement.core
Class AddColumnStatement
java.lang.Object
liquibase.statement.AbstractSqlStatement
liquibase.statement.core.AddColumnStatement
- All Implemented Interfaces:
- SqlStatement
public class AddColumnStatement
- extends AbstractSqlStatement
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AddColumnStatement
public AddColumnStatement(String schemaName,
String tableName,
String columnName,
String columnType,
Object defaultValue,
ColumnConstraint... constraints)
getSchemaName
public String getSchemaName()
getTableName
public String getTableName()
getColumnName
public String getColumnName()
getColumnType
public String getColumnType()
getConstraints
public Set<ColumnConstraint> getConstraints()
isAutoIncrement
public boolean isAutoIncrement()
isPrimaryKey
public boolean isPrimaryKey()
isNullable
public boolean isNullable()
isUnique
public boolean isUnique()
getDefaultValue
public Object getDefaultValue()
Copyright © 2004-2011 Liquibase.org. All Rights Reserved.