Interface DropColumnOperation<Schema>

An operation to drop columns from the table.

interface DropColumnOperation<Schema> {
    columns: (keyof Schema)[];
}

Type Parameters

Properties

Properties

columns: (keyof Schema)[]

The columns to drop from the table.