mirror of
https://github.com/atuinsh/atuin.git
synced 2025-02-18 11:21:07 +01:00
* perf: add idx cache * Update crates/atuin-server-postgres/migrations/20240614104159_idx-cache.sql * indentation * remove trigger - for each row is too much, should be once per transaction
9 lines
119 B
SQL
9 lines
119 B
SQL
create table store_idx_cache(
|
|
id bigserial primary key,
|
|
user_id bigint,
|
|
|
|
host uuid,
|
|
tag text,
|
|
idx bigint
|
|
);
|