How should I create these two tables: ``` object P...
# exposed
w
How should I create these two tables:
Copy code
object Players: IntIdTable() {
    ...
    val clan = reference("clan", Clans).nullable()
    ...
}
and
Copy code
object Clans: IntIdTable() {
    ...
    val owner = reference("owner", Players).uniqueIndex()
    ...
}
Note that they are referencing each other.