mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
Rebrand to Syncfuse
This commit is contained in:
parent
0a09df5470
commit
92025c9dba
144 changed files with 1796 additions and 1977 deletions
|
|
@ -1,4 +1,4 @@
|
|||
CREATE TABLE umami.event_data_new
|
||||
CREATE TABLE syncfuse.event_data_new
|
||||
(
|
||||
website_id UUID,
|
||||
session_id UUID,
|
||||
|
|
@ -17,7 +17,7 @@ CREATE TABLE umami.event_data_new
|
|||
ORDER BY (website_id, event_id, data_key, created_at)
|
||||
SETTINGS index_granularity = 8192;
|
||||
|
||||
INSERT INTO umami.event_data_new
|
||||
INSERT INTO syncfuse.event_data_new
|
||||
SELECT website_id,
|
||||
session_id,
|
||||
event_id,
|
||||
|
|
@ -30,9 +30,9 @@ SELECT website_id,
|
|||
data_type,
|
||||
created_at,
|
||||
NULL
|
||||
FROM umami.event_data;
|
||||
FROM syncfuse.event_data;
|
||||
|
||||
CREATE TABLE umami.session_data
|
||||
CREATE TABLE syncfuse.session_data
|
||||
(
|
||||
website_id UUID,
|
||||
session_id UUID,
|
||||
|
|
@ -48,10 +48,10 @@ CREATE TABLE umami.session_data
|
|||
ORDER BY (website_id, session_id, data_key, created_at)
|
||||
SETTINGS index_granularity = 8192;
|
||||
|
||||
RENAME TABLE umami.event_data TO umami.event_data_old;
|
||||
RENAME TABLE umami.event_data_new TO umami.event_data;
|
||||
RENAME TABLE syncfuse.event_data TO syncfuse.event_data_old;
|
||||
RENAME TABLE syncfuse.event_data_new TO syncfuse.event_data;
|
||||
|
||||
/*
|
||||
DROP TABLE umami.event_data_old
|
||||
DROP TABLE syncfuse.event_data_old
|
||||
*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue