mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
add data migration to convert funnel and goals reports to new structure
This commit is contained in:
parent
aa7d3cd1aa
commit
964651bad3
2 changed files with 27 additions and 0 deletions
|
|
@ -71,3 +71,29 @@ CREATE INDEX "pixel_team_id_idx" ON "pixel"("team_id");
|
|||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "pixel_created_at_idx" ON "pixel"("created_at");
|
||||
|
||||
-- DataMigration
|
||||
UPDATE "report"
|
||||
SET parameters = parameters - 'websiteId' - 'dateRange'
|
||||
WHERE type = 'funnel';
|
||||
|
||||
INSERT INTO "report" (report_id, user_id, website_id, type, name, description, parameters, created_at, updated_at)
|
||||
SELECT gen_random_uuid(),
|
||||
user_id,
|
||||
website_id,
|
||||
'goal',
|
||||
concat(name, ' - ', elem ->> 'value'),
|
||||
description,
|
||||
jsonb_build_object(
|
||||
'type', CASE WHEN elem ->> 'type' = 'url' THEN 'path'
|
||||
ELSE elem ->> 'type' END,
|
||||
'value', elem ->> 'value'
|
||||
) AS parameters,
|
||||
created_at,
|
||||
updated_at
|
||||
FROM "report"
|
||||
CROSS JOIN LATERAL jsonb_array_elements(parameters -> 'goals') elem
|
||||
WHERE elem ->> 'type' IN ('event', 'url')
|
||||
and type = 'goal';
|
||||
|
||||
DELETE FROM "report" WHERE parameters ? 'goals' and type = 'goal';
|
||||
|
|
@ -59,6 +59,7 @@ export {
|
|||
Funnel,
|
||||
Lightbulb,
|
||||
Lightning,
|
||||
Location,
|
||||
Magnet,
|
||||
Money,
|
||||
Network,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue