create table if not exists posts ( uri text primary key, create_ts int not null ); create index if not exists ts_idx on posts(create_ts);