AlterTableAddStep |
AlterTableStep.add(String field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.add(Collection<? extends FieldOrConstraint> fields) |
Add an ADD clause with multiple columns or constraints to
the ALTER TABLE statement.
|
AlterTableAddStep |
AlterTableStep.add(Field<?> field) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
<T> AlterTableAddStep |
AlterTableStep.add(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.add(FieldOrConstraint... fields) |
Add an ADD clause with multiple columns or constraints to
the ALTER TABLE statement.
|
AlterTableAddStep |
AlterTableStep.add(Name field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumn(String field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumn(Field<?> field) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
<T> AlterTableAddStep |
AlterTableStep.addColumn(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumn(Name field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumnIfNotExists(String field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumnIfNotExists(Field<?> field) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
<T> AlterTableAddStep |
AlterTableStep.addColumnIfNotExists(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addColumnIfNotExists(Name field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addIfNotExists(String field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addIfNotExists(Field<?> field) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
<T> AlterTableAddStep |
AlterTableStep.addIfNotExists(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableAddStep |
AlterTableStep.addIfNotExists(Name field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|