mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 00:34:20 +01:00
95cc472037
I'd like to tidy up the root a little, and it's nice to have all the rust crates in one place
12 lines
312 B
SQL
12 lines
312 B
SQL
create table if not exists events (
|
|
id text primary key,
|
|
timestamp integer not null,
|
|
hostname text not null,
|
|
event_type text not null,
|
|
|
|
history_id text not null
|
|
);
|
|
|
|
-- Ensure there is only ever one of each event type per history item
|
|
create unique index history_event_idx ON events(event_type, history_id);
|