Package | Description |
---|---|
liquibase.statement | |
liquibase.statement.core |
Modifier and Type | Class and Description |
---|---|
class |
AutoIncrementConstraint |
class |
ForeignKeyConstraint |
class |
NotNullConstraint |
class |
PrimaryKeyConstraint |
class |
UniqueConstraint |
Modifier and Type | Method and Description |
---|---|
Set<ColumnConstraint> |
AddColumnStatement.getConstraints() |
Modifier and Type | Method and Description |
---|---|
CreateTableStatement |
CreateTableStatement.addColumn(String columnName,
LiquibaseDataType columnType,
ColumnConstraint[] constraints) |
CreateTableStatement |
CreateTableStatement.addColumn(String columnName,
LiquibaseDataType columnType,
Object defaultValue,
ColumnConstraint[] constraints) |
CreateTableStatement |
CreateTableStatement.addColumn(String columnName,
LiquibaseDataType columnType,
Object defaultValue,
String remarks,
ColumnConstraint... constraints) |
CreateTableStatement |
CreateTableStatement.addColumn(String columnName,
LiquibaseDataType columnType,
String defaultValueConstraintName,
Object defaultValue,
String remarks,
ColumnConstraint... constraints) |
CreateTableStatement |
CreateTableStatement.addPrimaryKeyColumn(String columnName,
LiquibaseDataType columnType,
Object defaultValue,
String keyName,
String tablespace,
ColumnConstraint... constraints) |
Constructor and Description |
---|
AddColumnStatement(String catalogName,
String schemaName,
String tableName,
String columnName,
String columnType,
Object defaultValue,
ColumnConstraint... constraints) |
AddColumnStatement(String catalogName,
String schemaName,
String tableName,
String columnName,
String columnType,
Object defaultValue,
String remarks,
ColumnConstraint... constraints) |
Copyright © 2019 Liquibase.org. All rights reserved.