Uses of Interface
liquibase.statement.ColumnConstraint
Packages that use ColumnConstraint
-
Uses of ColumnConstraint in liquibase.statement
Classes in liquibase.statement that implement ColumnConstraintModifier and TypeClassDescriptionclass
class
class
class
class
-
Uses of ColumnConstraint in liquibase.statement.core
Methods in liquibase.statement.core with parameters of type ColumnConstraintModifier and TypeMethodDescriptionCreateTableStatement.addColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, String remarks, ColumnConstraint... constraints) CreateTableStatement.addColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, ColumnConstraint[] constraints) CreateTableStatement.addColumn
(String columnName, LiquibaseDataType columnType, String defaultValueConstraintName, Object defaultValue, String remarks, ColumnConstraint... constraints) CreateTableStatement.addColumn
(String columnName, LiquibaseDataType columnType, ColumnConstraint[] constraints) CreateTableStatement.addPrimaryKeyColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, boolean deferrable, boolean initiallyDeferred, String keyName, String tablespace, String remarks, ColumnConstraint... constraints) CreateTableStatement.addPrimaryKeyColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, boolean deferrable, boolean initiallyDeferred, String keyName, String tablespace, ColumnConstraint... constraints) CreateTableStatement.addPrimaryKeyColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, String keyName, String tablespace, ColumnConstraint... constraints) CreateTableStatement.addPrimaryKeyColumn
(String columnName, LiquibaseDataType columnType, Object defaultValue, String keyName, String tablespace, ColumnConstraint... constraints) Constructors in liquibase.statement.core with parameters of type ColumnConstraintModifierConstructorDescriptionAddColumnStatement
(String catalogName, String schemaName, String tableName, String columnName, String columnType, Object defaultValue, String remarks, ColumnConstraint... constraints) AddColumnStatement
(String catalogName, String schemaName, String tableName, String columnName, String columnType, Object defaultValue, ColumnConstraint... constraints)