Vinicius Araujo
06/17/2019, 6:39 PMColumn<EntityId<UUID>>
is different from Column<UUID>
tapac
06/18/2019, 9:44 PMVinicius Araujo
06/19/2019, 6:48 PMobject Parents: UUIDTable("parent") {
val name = text("name")
}
And then get error when referencing it's id:
object Child: UUIDTable("child") {
val idParent = (uuid("id_parent") references Parents.id) //error
}