mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
21 lines
406 B
YAML
21 lines
406 B
YAML
name: webinar_registrations
|
|
table: webinar_registrations
|
|
grain:
|
|
- registration_id
|
|
columns:
|
|
- name: registration_id
|
|
type: number
|
|
- name: lead_id
|
|
type: number
|
|
- name: registered_at
|
|
type: time
|
|
role: time
|
|
- name: webinar_id
|
|
type: number
|
|
joins:
|
|
- to: leads
|
|
'on': lead_id = leads.lead_id
|
|
relationship: many_to_one
|
|
- to: webinars
|
|
'on': webinar_id = webinars.webinar_id
|
|
relationship: many_to_one
|