2024-03-17 21:57:17 +00:00
|
|
|
create table if not exists hits (
|
|
|
|
id integer primary key,
|
2024-03-25 00:37:06 +00:00
|
|
|
page text not null, -- the slug from the page
|
2024-03-28 16:37:39 +00:00
|
|
|
hit_key text not null unique,
|
2024-03-25 00:37:06 +00:00
|
|
|
accessed timestamp not null default CURRENT_TIMESTAMP
|
2024-03-17 21:57:17 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
create index if not exists hits_page_dex on hits(page);
|
|
|
|
create index if not exists hits_accessed_dex on hits(accessed);
|