Uses of Class
liquibase.statement.core.CreateTableStatement
-
Packages that use CreateTableStatement Package Description liquibase.change.core Technically, a Change expresses an intention for alter the structure of the Database.liquibase.sqlgenerator.core liquibase.statement.core -
-
Uses of CreateTableStatement in liquibase.change.core
Methods in liquibase.change.core that return CreateTableStatement Modifier and Type Method Description protected CreateTableStatementCreateTableChange. generateCreateTableStatement() -
Uses of CreateTableStatement in liquibase.sqlgenerator.core
Methods in liquibase.sqlgenerator.core with parameters of type CreateTableStatement Modifier and Type Method Description Sql[]CreateTableGenerator. generateSql(CreateTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)Sql[]CreateTableGeneratorInformix. generateSql(CreateTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain)Informix SQL-specific implementation of the CREATE TABLE SQL generator.protected RelationCreateTableGenerator. getAffectedTable(CreateTableStatement statement)booleanCreateTableGeneratorInformix. supports(CreateTableStatement statement, Database database)ValidationErrorsCreateTableGenerator. validate(CreateTableStatement createTableStatement, Database database, SqlGeneratorChain sqlGeneratorChain) -
Uses of CreateTableStatement in liquibase.statement.core
Methods in liquibase.statement.core that return CreateTableStatement Modifier and Type Method Description CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType)CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType, Object defaultValue)CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, String remarks, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, ColumnConstraint[] constraints)CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType, String defaultValueConstraintName, Object defaultValue, String remarks, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. addColumn(String columnName, LiquibaseDataType columnType, ColumnConstraint[] constraints)CreateTableStatementCreateTableStatement. addColumnConstraint(AutoIncrementConstraint autoIncrementConstraint)CreateTableStatementCreateTableStatement. addColumnConstraint(ForeignKeyConstraint fkConstraint)CreateTableStatementCreateTableStatement. addColumnConstraint(NotNullConstraint notNullConstraint)CreateTableStatementCreateTableStatement. addColumnConstraint(UniqueConstraint uniqueConstraint)CreateTableStatementCreateTableStatement. addPrimaryKeyColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, boolean deferrable, boolean initiallyDeferred, String keyName, String tablespace, String remarks, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. addPrimaryKeyColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, boolean deferrable, boolean initiallyDeferred, String keyName, String tablespace, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. addPrimaryKeyColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, Boolean validate, String keyName, String tablespace, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. addPrimaryKeyColumn(String columnName, LiquibaseDataType columnType, Object defaultValue, String keyName, String tablespace, ColumnConstraint... constraints)CreateTableStatementCreateTableStatement. setTablespace(String tablespace)
-