Interface AddFieldOperation

An operation to add fields to the UDT.

Example

{
add: {
fields: {
country: 'text',
postalCode: 'int',
tags: { type: 'set', valueType: 'text' },
},
},
}
interface AddFieldOperation {
    fields: CreateTableColumnDefinitions;
}

Properties

Properties

The fields to add to the UDT, using the same format as in UDT creation.