mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-25 17:54:55 +01:00
17 lines
440 B
SQL
17 lines
440 B
SQL
-- Add migration script here
|
|
create table if not exists history (
|
|
id text primary key,
|
|
timestamp integer not null,
|
|
duration integer not null,
|
|
exit integer not null,
|
|
command text not null,
|
|
cwd text not null,
|
|
session text not null,
|
|
hostname text not null,
|
|
|
|
unique(timestamp, cwd, command)
|
|
);
|
|
|
|
create index if not exists idx_history_timestamp on history(timestamp);
|
|
create index if not exists idx_history_command on history(command);
|