uinteger

fun uinteger(name: String, checkConstraintName: String? = null): Column<UInt>

Creates a numeric column, with the specified name, for storing 4-byte unsigned integers. An optional checkConstraintName can be passed to allow customizing the check constraint name when needed.

Note: If the database being used is not MySQL or MariaDB, this column will use the database's 8-byte integer type with a check constraint that ensures storage of only values between 0 and UInt.MAX_VALUE inclusive.