Alex Po

Results 3 comments of Alex Po

``` object MyTbl: Table("sch.tbl") { val id = varchar("id", 36) val reasonUniqueId = varchar("reason_unique_id", 50) } ``` ``` val uuidGen = CustomStringFunction("UUID") MyTbl .update({ MyTbl.id eq "someVal" }) { it[reasonUniqueId]...

upd: changing to ``` val reasonUniqueId = varchar("reason_unique_id", 50).nullable ``` solves. not what I wanted, but it's another question, anyway.