mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
update to isoutc string value.
This commit is contained in:
parent
c7e79a0563
commit
3749e2a70d
@ -6,4 +6,15 @@ ALTER TABLE "event_data" RENAME COLUMN "event_data_type" TO "data_type";
|
||||
|
||||
-- add job_id
|
||||
ALTER TABLE "website_event" ADD COLUMN "job_id" UUID AFTER "created_at";
|
||||
ALTER TABLE "event_data" ADD COLUMN "job_id" UUID AFTER "created_at";
|
||||
ALTER TABLE "event_data" ADD COLUMN "job_id" UUID AFTER "created_at";
|
||||
|
||||
-- update event_data string
|
||||
alter table umami.event_data
|
||||
update string_value = number_value
|
||||
where number_value is not null
|
||||
and string_value is null;
|
||||
|
||||
alter table umami.event_data
|
||||
update string_value = replaceOne(concat(CAST(toDateTime(date_value, 'UTC'), 'String'),'Z'), ' ', 'T')
|
||||
where date_value is not null
|
||||
and string_value is null;
|
@ -71,7 +71,7 @@ async function clickhouseQuery(data: {
|
||||
event_name: eventName,
|
||||
event_key: a.key,
|
||||
string_value:
|
||||
a.dynamicDataType === DATA_TYPE.date ? getDateFormat(a.value, 'isoDateTime') : a.value,
|
||||
a.dynamicDataType === DATA_TYPE.date ? getDateFormat(a.value, 'isoUtcDateTime') : a.value,
|
||||
number_value: a.dynamicDataType === DATA_TYPE.number ? a.value : null,
|
||||
date_value: a.dynamicDataType === DATA_TYPE.date ? getDateFormat(a.value) : null,
|
||||
data_type: a.dynamicDataType,
|
||||
|
Loading…
Reference in New Issue
Block a user