JsonColumnType
open class JsonColumnType<T : Any>(val serialize: (T) -> String, val deserialize: (String) -> T) : ColumnType<T> , JsonColumnMarker
Column for storing JSON data, either in non-binary text format or the vendor's default JSON type format.