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(java.lang.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<java.lang.Object> |
alter(java.lang.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(java.lang.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<java.lang.Object> alter(java.lang.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(java.lang.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(java.lang.String field)
DROP COLUMN
clause to the ALTER TABLE
statement.Copyright © 2014. All Rights Reserved.