mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
31 lines
541 B
YAML
31 lines
541 B
YAML
|
|
name: web_sessions
|
||
|
|
table: web_sessions
|
||
|
|
grain:
|
||
|
|
- session_id
|
||
|
|
columns:
|
||
|
|
- name: session_id
|
||
|
|
type: number
|
||
|
|
- name: account_id
|
||
|
|
type: number
|
||
|
|
- name: landing_page
|
||
|
|
type: string
|
||
|
|
- name: lead_id
|
||
|
|
type: number
|
||
|
|
- name: session_start
|
||
|
|
type: string
|
||
|
|
- name: utm_campaign
|
||
|
|
type: string
|
||
|
|
- name: utm_medium
|
||
|
|
type: string
|
||
|
|
- name: utm_source
|
||
|
|
type: string
|
||
|
|
- name: visitor_id
|
||
|
|
type: number
|
||
|
|
joins:
|
||
|
|
- to: leads
|
||
|
|
'on': lead_id = leads.lead_id
|
||
|
|
relationship: many_to_one
|
||
|
|
- to: accounts
|
||
|
|
'on': account_id = accounts.account_id
|
||
|
|
relationship: many_to_one
|