mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-26 02:04:49 +01:00
156893d774
* Begin moving to sqlx for local too * Stupid scanners should just have a nice cup of tea Random internet shit searching for /.env or whatever * Remove diesel and rusqlite fully
17 lines
437 B
SQL
17 lines
437 B
SQL
-- Add migration script here
|
|
create table if not exists history (
|
|
id text primary key,
|
|
timestamp text 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);
|