ktx/python/ktx-sl/sources/ecommerce/customers.yaml

20 lines
332 B
YAML
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
name: customers
table: public.customers
grain: [id]
columns:
- name: id
type: number
- name: name
type: string
- name: segment
type: string
- name: region_id
type: number
- name: created_at
type: time
role: time
joins:
- to: regions
"on": region_id = regions.id
relationship: many_to_one