hitman/migrations/20240317182405_hits.up.sql

9 lines
231 B
MySQL
Raw Normal View History

create table if not exists hits (
id integer primary key,
page text not null,
accessed text not null
);
create index if not exists hits_page_dex on hits(page);
create index if not exists hits_accessed_dex on hits(accessed);