this repo has no description
at master 143 B view raw
1create table if not exists posts ( 2 uri text primary key, 3 create_ts int not null 4); 5 6create index if not exists ts_idx on posts(create_ts);