aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/db/server-pg-migrations/20240614104159_idx-cache.sql
blob: 12bbbecc46d9e8c5f92ebb9c538dd913fd3b7e86 (plain) (blame)
1
2
3
4
5
6
7
8
CREATE TABLE store_idx_cache(
  id BIGSERIAL PRIMARY KEY,
  user_id UUID,

  host UUID,
  tag TEXT,
  idx BIGINT
);