How do I set the default value to `null` of a `.nu...
# exposed
s
How do I set the default value to
null
of a
.nullable()
column ? Many of these decorating functions are defined as
fun <T:Any> Column<T>.default(
t
AFAIK, if you don't provide a value for a nullable column it will be defaulted to null by database
s
Thanks