mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
update session data schema
This commit is contained in:
parent
db25f241c0
commit
c79720ae1d
2 changed files with 3 additions and 2 deletions
|
|
@ -66,8 +66,8 @@ CREATE TABLE umami.session_data
|
||||||
created_at DateTime('UTC'),
|
created_at DateTime('UTC'),
|
||||||
job_id Nullable(UUID)
|
job_id Nullable(UUID)
|
||||||
)
|
)
|
||||||
ENGINE = MergeTree
|
ENGINE = ReplacingMergeTree
|
||||||
ORDER BY (website_id, session_id, data_key, created_at)
|
ORDER BY (website_id, session_id, data_key)
|
||||||
SETTINGS index_granularity = 8192;
|
SETTINGS index_granularity = 8192;
|
||||||
|
|
||||||
-- stats hourly
|
-- stats hourly
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty {
|
.empty {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue