withDefinition

fun <T> Column<T>.withDefinition(vararg definition: Any): Column<T>

Appends a database-specific column definition to this column's SQL in a CREATE TABLE statement.

The specified definition is appended after the column's name, type, and default value (if any), but before any column constraint definitions. If multiple definition arguments are passed, they will be joined as string representations separated by a single space character.