aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/db/server-pg-migrations/20240614104159_idx-cache.sql
blob: 76425ed7bcd29bf88460c5caadf887c281d771d8 (plain) (blame)
1
2
3
4
5
6
7
8
create table store_idx_cache(
  id bigserial primary key, 
  user_id bigint,

  host uuid,
  tag text,
  idx bigint
);