mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
16 lines
308 B
YAML
16 lines
308 B
YAML
name: nation
|
|
table: public.nation
|
|
grain: [n_nationkey]
|
|
columns:
|
|
- name: n_nationkey
|
|
type: number
|
|
- name: n_name
|
|
type: string
|
|
- name: n_regionkey
|
|
type: number
|
|
- name: n_comment
|
|
type: string
|
|
joins:
|
|
- to: region
|
|
"on": n_regionkey = region.r_regionkey
|
|
relationship: many_to_one
|