Interface DropColumnOperation<Schema>

An operation to drop columns from the table.

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

Type Parameters

Properties

Properties

columns: (keyof Schema & string)[]

The columns to drop from the table.