Interface AlterTableOperations<Schema>

The possible alterations that may be performed on the table. Only one out of the four may be used at a time.

interface AlterTableOperations<Schema> {
    add?: AddColumnOperation;
    addVectorize?: AddVectorizeOperation<Schema>;
    drop?: DropColumnOperation<Schema>;
    dropVectorize?: DropVectorizeOperation<Schema>;
}

Type Parameters

Properties