blob: cd54cb18920bf37fed2bf06ec04a20a95c76151c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
create table store_idx_cache(
id integer primary key autoincrement,
user_id bigint,
host uuid,
tag text,
idx bigint
);
create unique index store_idx_cache_uniq on store_idx_cache(user_id, host, tag);
|