mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-26 13:35:16 +03:00
e3268c8c59
closes https://linear.app/tryghost/issue/ANAL-111/rename-hits-to-pageviews-inside-of-tinybird - We currently have two concepts: visits (unique visits) and pageviews (also called hits) - We want to standardise on this terminology, so inside tinybird, we're going to call hit "pageviews" to make it super clear what's happening
17 lines
485 B
Plaintext
17 lines
485 B
Plaintext
SCHEMA >
|
|
`site_uuid` String,
|
|
`post_uuid` String,
|
|
`date` Date,
|
|
`device` String,
|
|
`browser` String,
|
|
`location` String,
|
|
`source` String,
|
|
`pathname` String,
|
|
`member_status` SimpleAggregateFunction(any, String),
|
|
`visits` AggregateFunction(uniq, String),
|
|
`pageviews` AggregateFunction(count)
|
|
|
|
ENGINE AggregatingMergeTree
|
|
ENGINE_PARTITION_KEY toYYYYMM(date)
|
|
ENGINE_SORTING_KEY date, device, browser, location, source, pathname, post_uuid, site_uuid
|