ktx/python/ktx-sl/sources/b2b_saas/contacts.yaml

24 lines
373 B
YAML
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
name: contacts
table: contacts
grain:
- contact_id
columns:
- name: contact_id
type: number
- name: account_id
type: number
- name: email
type: string
- name: first_name
type: string
- name: last_name
type: string
- name: phone
type: string
- name: title
type: string
joins:
- to: accounts
'on': account_id = accounts.account_id
relationship: many_to_one