mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Add indexes to tables.
This commit is contained in:
parent
11f1afe5c3
commit
c681441601
4 changed files with 13 additions and 275 deletions
37
sql/schema.postgresql.sql
Normal file
37
sql/schema.postgresql.sql
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
create table website (
|
||||
website_id uuid primary key,
|
||||
hostname varchar(255) unique not null,
|
||||
created_at timestamp with time zone default current_timestamp
|
||||
);
|
||||
|
||||
create table session (
|
||||
session_id uuid primary key,
|
||||
website_id uuid references website(website_id) on delete cascade,
|
||||
created_at timestamp with time zone default current_timestamp,
|
||||
browser varchar(20),
|
||||
os varchar(20),
|
||||
screen varchar(11),
|
||||
language varchar(35),
|
||||
country char(2)
|
||||
);
|
||||
|
||||
create table pageview (
|
||||
view_id serial primary key,
|
||||
session_id uuid references session(session_id) on delete cascade,
|
||||
created_at timestamp with time zone default current_timestamp,
|
||||
url varchar(500) not null,
|
||||
referrer varchar(500)
|
||||
);
|
||||
|
||||
create table event (
|
||||
event_id serial primary key,
|
||||
session_id uuid references session(session_id) on delete cascade,
|
||||
created_at timestamp with time zone default current_timestamp,
|
||||
url varchar(500) not null,
|
||||
event_type varchar(50) not null,
|
||||
event_value varchar(255) not null
|
||||
);
|
||||
|
||||
create index on session(created_at);
|
||||
create index on pageview(created_at);
|
||||
create index on event(created_at);
|
||||
Loading…
Add table
Add a link
Reference in a new issue