public interface AlterTableStep
ALTER TABLE
where the action can be decided.Modifier and Type | Method and Description |
---|---|
<T> AlterTableFinalStep |
add(Field<T> field,
DataType<T> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
AlterTableFinalStep |
add(String field,
DataType<?> type)
Add an
ADD COLUMN clause to the ALTER TABLE
statement. |
<T> AlterTableAlterStep<T> |
alter(Field<T> field)
Add an
ALTER COLUMN clause to the ALTER TABLE
statement. |
AlterTableAlterStep<Object> |
alter(String field)
Add an
ALTER COLUMN clause to the ALTER TABLE
statement. |
AlterTableDropStep |
drop(Field<?> field)
Add an
DROP COLUMN clause to the ALTER TABLE
statement. |
AlterTableDropStep |
drop(String field)
Add an
DROP COLUMN clause to the ALTER TABLE
statement. |
@Support <T> AlterTableAlterStep<T> alter(Field<T> field)
ALTER COLUMN
clause to the ALTER TABLE
statement.@Support AlterTableAlterStep<Object> alter(String field)
ALTER COLUMN
clause to the ALTER TABLE
statement.@Support <T> AlterTableFinalStep add(Field<T> field, DataType<T> type)
ADD COLUMN
clause to the ALTER TABLE
statement.@Support AlterTableFinalStep add(String field, DataType<?> type)
ADD COLUMN
clause to the ALTER TABLE
statement.@Support AlterTableDropStep drop(Field<?> field)
DROP COLUMN
clause to the ALTER TABLE
statement.@Support AlterTableDropStep drop(String field)
DROP COLUMN
clause to the ALTER TABLE
statement.Copyright © 2015. All Rights Reserved.