mirror of
https://github.com/atuinsh/atuin.git
synced 2025-02-21 21:01:34 +01:00
9 lines
119 B
MySQL
9 lines
119 B
MySQL
|
create table store_idx_cache(
|
||
|
id bigserial primary key,
|
||
|
user_id bigint,
|
||
|
|
||
|
host uuid,
|
||
|
tag text,
|
||
|
idx bigint
|
||
|
);
|