mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
25 lines
506 B
YAML
25 lines
506 B
YAML
name: identity_links
|
|
table: identity_links
|
|
grain:
|
|
- link_id
|
|
columns:
|
|
- name: link_id
|
|
type: number
|
|
- name: child_identity_id
|
|
type: number
|
|
- name: linked_at
|
|
type: time
|
|
role: time
|
|
- name: link_source
|
|
type: string
|
|
- name: parent_identity_id
|
|
type: number
|
|
joins:
|
|
- to: identities
|
|
'on': child_identity_id = identities.identity_id
|
|
relationship: many_to_one
|
|
alias: identities_1
|
|
- to: identities
|
|
'on': parent_identity_id = identities.identity_id
|
|
relationship: many_to_one
|
|
alias: identities_2
|