In DSL, how can I reference an `UUIDTable`'s id? I...
# exposed
v
In DSL, how can I reference an `UUIDTable`'s id? I get an error saying
Column<EntityId<UUID>>
is different from
Column<UUID>
t
Could you share a code how you trying to reference?
v
Copy code
object Parents: UUIDTable("parent") {
    val name = text("name")
}
And then get error when referencing it's id:
Copy code
object Child: UUIDTable("child") {
    val idParent = (uuid("id_parent") references Parents.id) //error
}