Files
HKSingleParty/99_references/dbml_examples/aliases.dbml
2025-05-28 09:55:51 +08:00

14 lines
211 B
Plaintext

Table Person as u {
id int
parent1 int
parent2 int [ref: > u.id]
}
Ref: u.parent1 > u.id
Table dates.Day as d {
id int
next int [ref: > dates.d.id]
previous int [ref: > dates.Day.id]
}